by soth-ai
Reticle intercepts, visualizes, and profiles JSON-RPC traffic between your LLM and MCP servers in real-time, with zero latency overhead. Stop debugging blind. Start seeing everything.
# Add to your Claude Code skills
git clone https://github.com/soth-ai/mcp-reticleReticle is a proxy + UI for debugging MCP integrations:
No comments yet. Be the first to share your thoughts!
Supported transports: stdio, Streamable HTTP, WebSocket, HTTP/SSE.
# npm
npm install -g mcp-reticle
# pip
pip install mcp-reticle
# Homebrew
brew install labterminal/mcp-reticle/mcp-reticle
Replace your MCP server command with mcp-reticle run --name <name> -- <command...>.
Example (Claude Desktop-style config):
{
"mcpServers": {
"filesystem": {
"command": "mcp-reticle",
"args": ["run", "--name", "filesystem", "--", "npx", "-y", "@modelcontextprotocol/server-filesystem", "/Users/me/work"]
}
}
}
mcp-reticle ui
mcp-ret...