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
Uses HTTP and Server-Sent Events (SSE) to communicate with an MCP server via JSON-RPC 2.0. This is useful for connecting to remote servers that implement the MCP protocol.
148
148
149
149
```bash
150
-
mcp tools http://127.0.0.1:3001
150
+
mcp tools http://localhost:3001/sse
151
151
152
152
# Example: Use the everything sample server
153
153
# docker run -p 3001:3001 --rm -it tzolov/mcp-everything-server:v1
@@ -340,7 +340,7 @@ mcp web https://ne.tools
340
340
The web interface includes:
341
341
342
342
- A sidebar listing all available tools, resources, and prompts
343
-
- Form-based and JSON-based parameter editing
343
+
- Form-based and JSON-based parameter editing
344
344
- Formatted and raw JSON response views
345
345
- Interactive parameter forms automatically generated from tool schemas
346
346
- Support for complex parameter types (arrays, objects, nested structures)
@@ -626,7 +626,7 @@ mcp proxy tool count_lines "Counts lines in a file" "file:string" -e "wc -l < \"
626
626
The guard mode allows you to restrict access to specific tools, prompts, and resources based on pattern matching. This is useful for security purposes when:
0 commit comments