Skip to content

Add Kiro and workaround for STDIO-only clients #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/toolhive/_partials/_client-compat-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
| Continue (VS Code) | ✅ | ❌ | v1.0.14+ |
| Continue (JetBrains) | ✅ | ❌ | v1.0.23+ |
| PydanticAI | ✅ | ❌ | v0.2.18+ |
| ChatGPT Desktop | ❌ | ❌ | No support for HTTP/SSE MCPs |
| Claude Desktop | ❌ | ❌ | No support for HTTP/SSE MCPs ([issue][1]) |
| ChatGPT Desktop | ❌ | ❌ | See [workaround for STDIO-only clients][4] |
| Claude Desktop | ❌ | ❌ | See [workaround for STDIO-only clients][4] |
| Kiro | ❌ | ❌ | See [workaround for STDIO-only clients][4] |

[1]: https://github.com/orgs/modelcontextprotocol/discussions/16
[2]: https://github.com/cline/cline/issues/4391
[3]: /toolhive/reference/client-compatibility.mdx#vs-code-with-copilot
[4]: /toolhive/reference/client-compatibility#stdio-only-client-configuration
24 changes: 24 additions & 0 deletions docs/toolhive/reference/client-compatibility.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,30 @@ to include the MCP server URL:
Copilot for JetBrains supports SSE (`"type": "sse"`) and Streamable HTTP
(`"type": "streamable-http"`) transports.

### STDIO-only client configuration

If your client only supports the STDIO transport, you can use the
[remote-mcp](https://www.npmjs.com/package/mcp-remote) npm package to proxy the
ToolHive MCP sever over STDIO.

Example configuration:

```json
{
"mcpServers": {
"github": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:19046/sse#github",
"--transport",
"sse"
]
}
}
}
```

## Related information

- [Client configuration](../guides-cli/client-configuration.mdx)
Expand Down
Loading