Robinhood MCP Server

TypeScript SDK for the MadeOnSol Robinhood Chain (chain id 4663) API — EVM-native KOL trades, the DEX trade tape, token discovery/bundles/candles

Remote serverstreamable-httpTypeScript

What is the Robinhood MCP server?

TypeScript SDK for the MadeOnSol Robinhood Chain (chain id 4663) API — EVM-native KOL trades, the DEX trade tape, token discovery/bundles/candles, deployer reputation, smart-money wallets, and push rule engines (copy-trade, price alerts. The robinhood mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

What it actually does

Robinhood Chain is an Arbitrum Orbit L2. This SDK gives you the same intel you get on Solana — live KOL trades, a DEX trade tape, token discovery, launch-bundle detection, early-buyer quality, deployer reputation and smart-money wallets — but EVM-native: lowercase 0x addresses, eth_amount, tx_hash, block_number, net_flow_eth. Data comes from our self-hosted RHC node. The KOL→EVM mapping is recovered by tracing each Solana KOL's bridge deposits (deBridge / Relay / Mayan / Wormhole) — a dataset unique to MadeOnSol.

Its toolset

Everything the assistant can do here goes through one of these:

  • Method — Route
  • Examples — // Is this token's early cohort a launch bundle that's still holding? const { bundle } = await client.tokenBundle("0xToken...")

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Robinhood's toolset — Method, Examples — is a fair guide to whether it matches your workflow. It is maintained by madeonsol; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Robinhood's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the robinhood mcp server does with a few real requests.

Available tools

ToolWhat it does
MethodRoute
Examples// Is this token's early cohort a launch bundle that's still holding? const { bundle } = await client.tokenBundle("0xToken..."); console.log(bundle.bundle_kind, bundle.held_pct_of_supply);

How to install the Robinhood MCP server

{
  "mcpServers": {
    "robinhood-chain-x402": {
      "command": "npx",
      "args": ["-y", "robinhood-chain-x402"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Robinhood to Method.
  • Use Robinhood to Examples.

Frequently asked questions

It connects Robinhood to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Method, Examples) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Robinhood directly.