Skip to main content
@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

  • init detects 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_KEY in the environment or pipe the key on stdin.
Do not pass the key as a command-line argument. Shell history records arguments. If an older version wrote the key to recorded terminal output, rotate the key before you use the new config.
For a stable terminal command, install the package globally:
The package installs 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/settings.json

Use 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. Remote MCP documents the Streamable HTTP transport, the initialize handshake, and Mcp-Session-Id.