-
Notifications
You must be signed in to change notification settings - Fork 46
Client Configuration
Apoorv Raj Saxena edited this page Jan 6, 2026
·
1 revision
Reticle works by wrapping your MCP server command (stdio) or reverse-proxying HTTP-based MCP servers.
Replace:
<server command>
With:
mcp-reticle run --name <server-name> -- <server command>
Example:
{
"mcpServers": {
"my-server": {
"command": "mcp-reticle",
"args": ["run", "--name", "my-server", "--", "python", "-m", "my_mcp_server"]
}
}
}Common macOS path:
~/Library/Application Support/Claude/claude_desktop_config.json
Example:
{
"mcpServers": {
"my-server": {
"command": "mcp-reticle",
"args": ["run", "--name", "my-server", "--", "node", "server.js"]
}
}
}If your client/server uses HTTP/SSE/WebSocket transports, use:
mcp-reticle proxy --name api --upstream http://localhost:8080 --listen 3001See: CLI
Reticle · MCP inspection & profiling · MIT licensed