Skip to content
Merged
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
10 changes: 9 additions & 1 deletion docs/toolhive/guides-k8s/run-mcp-k8s.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,17 @@ flowchart LR
Proxy -->|Attaches/STDIO| MCP
```

:::info[STDIO Transport Limitation]

MCP servers using STDIO transport support only a single client connection at a
time. If you need to support multiple users or concurrent client connections,
use SSE (Server-Sent Events) or Streamable HTTP transport instead.

:::

### Streamable HTTP and SSE transport flow

For MCP servers using Server-Sent Events (SSE) or Stremable HTTP transport, the
For MCP servers using Server-Sent Events (SSE) or Streamable HTTP transport, the
proxy creates both a pod and a headless service. This allows direct HTTP/SSE or
HTTP/Streamable HTTP communication between the proxy and MCP server while
maintaining network isolation and service discovery.
Expand Down