You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**SSE (direct)**|`npx @modelcontextprotocol/inspector`| Connects straight to the Gateway's SSE endpoint. |
15
15
|**Stdio wrapper** <br/>*(for clients that can't speak SSE)*|`npx @modelcontextprotocol/inspector python -m mcpgateway.wrapper`| Spins up the wrapper **in-process** and points Inspector to its stdio stream. |
16
-
|**Stdio wrapper via uv / uvenv**|`npx @modelcontextprotocol/inspector uvenv run python -m mcpgateway.wrapper`| Uses the lightning-fast `uv` virtual-env if installed. |
16
+
|**Stdio wrapper via uv / uvx**|`npx @modelcontextprotocol/inspector uvx python -m mcpgateway.wrapper`| Uses the lightning-fast `uv` virtual-env if installed. |
17
17
18
18
🔍 MCP Inspector boots at **[http://localhost:5173](http://localhost:5173)** - open it in a browser and add:
19
19
20
20
```text
21
-
Server URL: http://localhost:4444/servers/1/sse
21
+
Server URL: http://localhost:4444/servers/UUID_OF_SERVER_1/sse
Copy file name to clipboardExpand all lines: docs/docs/overview/ui-concepts.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@
12
12
You can use [`supergateway`](https://www.npmjs.com/package/supergateway) to wrap any `stdio`-only MCP server and expose it over SSE. Here are example commands:
13
13
14
14
```bash
15
-
npx -y supergateway --stdio "uvenv run mcp-server-git" --port 8001
16
-
npx -y supergateway --stdio "uvenv run mcp_server_time -- --local-timezone=Europe/Dublin"
0 commit comments