File tree Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 9
9
| Continue (VS Code) | ✅ | ❌ | v1.0.14+ |
10
10
| Continue (JetBrains) | ✅ | ❌ | v1.0.23+ |
11
11
| PydanticAI | ✅ | ❌ | v0.2.18+ |
12
- | ChatGPT Desktop | ❌ | ❌ | No support for HTTP/SSE MCPs |
13
- | Claude Desktop | ❌ | ❌ | No support for HTTP/SSE MCPs ([ issue] [ 1 ] ) |
12
+ | ChatGPT Desktop | ❌ | ❌ | See [ workaround for STDIO-only clients] [ 4 ] |
13
+ | Claude Desktop | ❌ | ❌ | See [ workaround for STDIO-only clients] [ 4 ] |
14
+ | Kiro | ❌ | ❌ | See [ workaround for STDIO-only clients] [ 4 ] |
14
15
15
- [ 1 ] : https://github.com/orgs/modelcontextprotocol/discussions/16
16
16
[ 2 ] : https://github.com/cline/cline/issues/4391
17
17
[ 3 ] : /toolhive/reference/client-compatibility.mdx#vs-code-with-copilot
18
+ [ 4 ] : /toolhive/reference/client-compatibility#stdio-only-client-configuration
Original file line number Diff line number Diff line change @@ -258,6 +258,30 @@ to include the MCP server URL:
258
258
Copilot for JetBrains supports SSE (`"type" : " sse" ` ) and Streamable HTTP
259
259
(` " type" : "streamable-http"`) transports.
260
260
261
+ # ## STDIO-only client configuration
262
+
263
+ If your client only supports the STDIO transport, you can use the
264
+ [remote-mcp](https://www.npmjs.com/package/mcp-remote) npm package to proxy the
265
+ ToolHive MCP sever over STDIO.
266
+
267
+ Example configuration :
268
+
269
+ ` ` ` json
270
+ {
271
+ "mcpServers": {
272
+ "github": {
273
+ "command": "npx",
274
+ "args": [
275
+ "mcp-remote",
276
+ "http://localhost:19046/sse#github",
277
+ "--transport",
278
+ "sse"
279
+ ]
280
+ }
281
+ }
282
+ }
283
+ ` ` `
284
+
261
285
# # Related information
262
286
263
287
- [Client configuration](../guides-cli/client-configuration.mdx)
You can’t perform that action at this time.
0 commit comments