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

robindex-mcp

v0.1.0

Published

MCP server for Robindex — let AI agents browse the P2P OTC market, quote, list, and buy on Robinhood Chain.

Readme

Robindex MCP

An MCP server that lets AI agents (Claude, or anything MCP-capable) use the Robindex P2P OTC desk on Robinhood Chain — browse the market, get quotes, and (with a wallet) list, buy, and cancel orders.

Tools

Read / browse (no wallet needed):

| Tool | What it does | |---|---| | list_markets | Browse open P2P orders; filter by token or pricing mode | | get_order | Full details of one order by id | | quote_buy | Exact cost to buy some/all of an order, in a chosen token | | token_info | Price / mcap / liquidity for a token (RH contract or Solana mint) | | protocol_stats | Lifetime + 24h volume, trades, fees, orders |

Trade (needs a funded wallet):

| Tool | What it does | |---|---| | wallet_status | The agent's trading wallet + ETH balance | | create_order | List a token for sale (market / discount / fixed; multi-token & private supported) | | buy_order | Buy some/all of an order, paying in an accepted token | | my_orders | The wallet's own listings | | cancel_order | Cancel an order and get the tokens back |

Setup

npm install
npm run build

Configuration (env)

| Var | Default | Notes | |---|---|---| | ROBINDEX_API | https://www.robindex.online | The Robindex instance | | ROBINHOOD_RPC | public RPC | Robinhood Chain RPC | | RDX_MCP_PRIVATE_KEY | — | Optional. A funded Robinhood-Chain wallet the agent trades from. Read tools work without it; create_order / buy_order / cancel_order require it. |

Give it a dedicated, funded wallet — not your main one. The agent can spend from it. Fund it with a little ETH (gas + native purchases) plus whatever tokens you want it to list.

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\):

{
  "mcpServers": {
    "robindex": {
      "command": "node",
      "args": ["C:/Users/Aayus/OneDrive/Desktop/robindex-mcp/dist/index.js"],
      "env": {
        "RDX_MCP_PRIVATE_KEY": "0x…your-trading-wallet-key…"
      }
    }
  }
}

Omit the env block for a read-only agent (browse + quote, no trading).

Claude Code

claude mcp add robindex -- node C:/Users/Aayus/OneDrive/Desktop/robindex-mcp/dist/index.js
# or, with trading enabled:
claude mcp add robindex --env RDX_MCP_PRIVATE_KEY=0x… -- node C:/Users/Aayus/OneDrive/Desktop/robindex-mcp/dist/index.js

Example agent prompts

  • "What CASHCAT orders are on Robindex, and which is cheapest vs market?"
  • "Quote buying 5 CASHCAT from the best order."
  • "List 100 of my ARROW tokens at 8% below market, accepting ETH and USDG."
  • "Buy the whole AAPL order, paying in ETH."
  • "Show my open orders and cancel the fixed-price one."

Notes

  • Trading tools currently cover Robinhood-Chain (EVM) orders. Cross-chain / Solana orders can be browsed and quoted; buying them is done in the web app for now.
  • Every write is a real on-chain transaction from the configured wallet. create_order deposits tokens into escrow; buy_order pays the escrow; both settle through the same audited Robindex endpoints the website uses.