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
Copy file name to clipboardExpand all lines: .pre-commit-config.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ repos:
89
89
- id: forbid-ai-stock-phrases
90
90
name: ❌ Forbid AI Stock Phrases
91
91
description: Prevents common AI-generated phrases from being committed.
92
-
entry: '(?i)(source=chatgpt.com|turn0search0|filecite|as an ai language model|i am an ai developed by|this response was generated by|i don''t have real-time information|i don''t have access to real-time|i can''t browse the internet|i cannot browse the internet|my knowledge cutoff|my training data|i''m not able to access|i don''t have the ability to)'
92
+
entry: '(?i)(source=chatgpt.com|turn0search0|filecite|unchanged|as an ai language model|i am an ai developed by|this response was generated by|i don''t have real-time information|i don''t have access to real-time|i can''t browse the internet|i cannot browse the internet|my knowledge cutoff|my training data|i''m not able to access|i don''t have the ability to)'
|**SSE (direct)**|`npx @modelcontextprotocol/inspector`| Connects straight to the Gateway's SSE endpoint. |
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. |
8
17
9
-
npx @modelcontextprotocol/inspector # SSE
10
-
npx @modelcontextprotocol/inspector uv --directory "/home/cmihai/mcpgateway-wrapper" run mcpgateway-wrapper # wrapper
11
-
```
18
+
🔍 MCP Inspector boots at **[http://localhost:5173](http://localhost:5173)** – open it in a browser and add:
12
19
13
-
🔍 MCP Inspector is up and running at http://localhost:5173 🚀
Supergateway runs a MCP stdio-based servers over SSE (Server-Sent Events) with one command. This is useful for remote access, debugging, or connecting to SSE-based clients when your MCP server only speaks stdio.
29
+
SuperGateway lets you expose *any* MCP **stdio** server over **SSE** with a single command – perfect for
30
+
remote debugging or for clients that only understand SSE.
19
31
20
-
`npx -y supergateway --stdio "uvx run mcp-server-git"``
21
-
or
22
-
```
32
+
```bash
33
+
# Using uvx (ships with uv)
34
+
npx -y supergateway --stdio "uvx run mcp-server-git"
35
+
# OR: using uvenv (pip-based)
23
36
pip install uvenv
24
37
npx -y supergateway --stdio "uvenv run mcp-server-git"
0 commit comments