🧾 JSONmedium
3. Add a remote (Streamable HTTP) server
Add a REMOTE server named "weather" that connects over Streamable HTTP instead of a subprocess: • type: "http" • url: "https://mcp.example.com/mcp" Do NOT give it a command — a remote server has no local process to launch.
How to approach this
A REMOTE server runs as a hosted service, so instead of `command`/`args` you point the host at a network endpoint: `type: "http"` (the Streamable HTTP transport) and the `url` of the server's single MCP endpoint. There's no subprocess — the host connects over HTTP (and runs the OAuth 2.1 flow if the server requires auth). Mixing in a `command` would be wrong: that's the stdio shape.
config.json