@0xinsider/mcp runs a local Model Context Protocol server over stdio. Use it when Claude Code, Cursor, Codex, Gemini CLI, or another stdio client needs 0xinsider data.
A hosted agent that cannot run a local process can use Remote MCP at
POST /api/v1/mcp instead. Both transports expose the same 33 tools and share the same rate limits.Install with init
initdetects Claude Code (~/.claude/settings.json), Cursor (~/.cursor/mcp.json), and Codex (~/.codex/config.toml) and writes their config.- For Gemini CLI it prints a config template to paste into
~/.gemini/settings.json. - It reads the API key from the terminal without an echo.
- For a non-interactive run, set
OXINSIDER_API_KEYin the environment or pipe the key on stdin.
0xinsider and the alias 0xinsider-mcp. Both run the same CLI. The commands are serve (the default), init, and help.
Configure a client by hand
- Claude Code
- Cursor
- Codex
- Gemini CLI
- Other clients
~/.claude/settings.jsonUse the tools
The server exposes 33 read-only tools from the same catalog as Remote MCP. It cannot place trades or write data.get_smart_money_flows is a deprecated alias of get_sharp_money_flows. Webhook create, update, delete, verify, and rotate operations are not tools.
Use the resources and prompts
The stdio server also serves four resources and three prompts. Remote MCP serves tools only.Ask a question
After install, ask a task-specific question. The client picks the tool.- “Who are the top prediction-market traders right now?”
- “What did A-grade or better whales buy in crypto markets today?”
- “Analyze trader
swisstony. Is their strategy worth a follow?” - “Are there suspicious accumulation patterns on the Trump election market?”
- “Show the position timeline for that whale on the Ethereum market.”
Set environment variables
The server sends the key with every call. Tool calls spend the same 100 requests per minute as REST calls. See Rate Limits.
Related
Remote MCP documents the Streamable HTTP transport, theinitialize handshake, and Mcp-Session-Id.