Skip to content

Commit fd04abf

Browse files
authored
Add Kiro and workaround for STDIO-only clients (#64)
1 parent 6b02645 commit fd04abf

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

docs/toolhive/_partials/_client-compat-table.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
| Continue (VS Code) ||| v1.0.14+ |
1010
| Continue (JetBrains) ||| v1.0.23+ |
1111
| 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] |
1415

15-
[1]: https://github.com/orgs/modelcontextprotocol/discussions/16
1616
[2]: https://github.com/cline/cline/issues/4391
1717
[3]: /toolhive/reference/client-compatibility.mdx#vs-code-with-copilot
18+
[4]: /toolhive/reference/client-compatibility#stdio-only-client-configuration

docs/toolhive/reference/client-compatibility.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,30 @@ to include the MCP server URL:
258258
Copilot for JetBrains supports SSE (`"type": "sse"`) and Streamable HTTP
259259
(`"type": "streamable-http"`) transports.
260260

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+
261285
## Related information
262286

263287
- [Client configuration](../guides-cli/client-configuration.mdx)

0 commit comments

Comments
 (0)