HTTP (remote) MCP CLIENT HOST LLM contains “tool calls” as structured ( JSON or XML ) output segments in predefined formats provides available tools in LLM context
"exec", "--quiet", "--installation-id=a-XXXXX", "vendor/bin/typo3 mcp:server" ] } } } HERE : Use an SSH connection to tunnel the MCP stream to your local machine. See https://developer.mittwald.de/cli/ for more information.
/** * Adds two numbers together. * * @param int $a The first number * @param int $b The second number * @return int The sum of the two numbers */ #[McpTool] public function add(int $a, int $b): int { return $a + $b; } }