npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@0xinsider/mcp

v1.0.2

Published

MCP server for 0xinsider — prediction market intelligence for AI agents

Readme

@0xinsider/mcp

MCP server for 0xinsider — prediction market intelligence for AI agents.

Gives your AI agent access to trader grades, whale trades, smart money signals, market intelligence, and insider detection across prediction markets.

Quick Start

Claude Code

npx -y @0xinsider/mcp init

Or manually add to ~/.claude/settings.json:

{
  "mcpServers": {
    "0xinsider": {
      "command": "npx",
      "args": ["-y", "@0xinsider/mcp"],
      "env": {
        "OXINSIDER_API_KEY": "oxi_sk_live_..."
      }
    }
  }
}

Cursor

npx -y @0xinsider/mcp init can also configure Cursor automatically when its local config directory is present.

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "0xinsider": {
      "command": "npx",
      "args": ["-y", "@0xinsider/mcp"],
      "env": {
        "OXINSIDER_API_KEY": "oxi_sk_live_..."
      }
    }
  }
}

Codex

npx -y @0xinsider/mcp init can also configure Codex automatically.

Or add this to ~/.codex/config.toml:

[mcp_servers."0xinsider"]
command = "npx"
args = ["-y", "@0xinsider/mcp"]

[mcp_servers."0xinsider".env]
OXINSIDER_API_KEY = "oxi_sk_live_..."

Gemini CLI

npx -y @0xinsider/mcp init can also configure Gemini CLI automatically when the gemini command is installed.

Or add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "0xinsider": {
      "command": "npx",
      "args": ["-y", "@0xinsider/mcp"],
      "env": {
        "OXINSIDER_API_KEY": "oxi_sk_live_..."
      }
    }
  }
}

Other MCP Clients

Any client that supports stdio transport:

OXINSIDER_API_KEY=oxi_sk_live_... npx -y @0xinsider/mcp

Need the command list? Run:

npx -y @0xinsider/mcp --help

API Key

Get your API key at 0xinsider.com/developers. Requires an Insider subscription.

Tools

| Tool | Description | |------|-------------| | get_trader | Look up a trader by wallet address or username — grade, P&L, win rate, strategy, quant metrics | | get_whale_trades | Recent large trades with signal scoring, filterable by size/category/grade | | get_leaderboard | Top-ranked traders (S/A/B grades) with optional category/strategy filters | | search_markets | Search prediction markets by keyword | | get_market_intel | Smart money flow analysis for a specific market | | get_insider_radar | Suspicious trading pattern detection |

Resources

| Resource | URI | Description | |----------|-----|-------------| | API Docs | oxinsider://docs/api | Complete API reference | | Agent Instructions | oxinsider://docs/agents | Decision tree for AI agents | | Leaderboard | oxinsider://data/leaderboard | Current top 20 traders | | Whale Trades | oxinsider://data/whale-trades | Latest 20 whale trades |

Prompts

| Prompt | Description | |--------|-------------| | analyze_trader | Deep analysis of a trader's performance and risk profile | | market_report | Smart money flow report for a market topic | | trading_signals | Scan for high-conviction trading signals |

Example Usage

Once configured, ask your AI agent:

  • "Who are the top prediction market traders right now?"
  • "What are whales buying in crypto markets?"
  • "Analyze trader 0x1234... — is their strategy worth following?"
  • "Analyze trader swisstony — is their strategy worth following?"
  • "Are there any suspicious trading patterns on the Trump election market?"
  • "Generate a smart money report for AI markets"

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | OXINSIDER_API_KEY | Yes | Your API key (oxi_sk_live_...) | | OXINSIDER_API_URL | No | Override API base URL (default: https://api.0xinsider.com) |

Rate Limits

100 requests per minute per user. The server returns actionable error messages when limits are hit.

License

MIT