Robinhood Chain data + guarded trading for AI agents: Stock Token quotes, portfolios, launches
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Model Context Protocol servers for Robinhood Chain (chain ID 4663).
Two servers, one package: a zero-config data server any MCP client can add in one line, and
an explicitly opt-in trading server for wallets that want to act. Built on
hoodchain, the TypeScript SDK for the chain.
Docs: https://nirholas.github.io/robinhood-chain-mcp/
Robinhood Chain has two other MCP servers today, both zero-star, days-old, read-only hobby projects. This is the productized one: a full data surface (Stock Tokens, memecoins, launches, chain stats) plus a guarded trading surface with hard spend caps and a confirm gate β built to the standard three.ws holds its agent tooling to.
Add to claude_desktop_config.json:
Add to .cursor/mcp.json:
No API key, no wallet, no config. It talks to the public Robinhood Chain RPC and starts answering tool calls immediately.
hood-mcp β data server (zero-config, read-only)stdio by default; pass --http (or HOOD_MCP_TRANSPORT=http) for Streamable HTTP on
HOOD_MCP_PORT (default 8730), serving POST /mcp and GET /health.
| Tool | What it does |
|---|---|
get_chain_stats | Latest block, gas price, TVL, network totals. |
list_stock_tokens | The 95-token Stock Token registry (ticker, name, contract, feed). |
get_stock_quote | Chainlink price + Uniswap DEX price + premium/discount + share price for a ticker. |
get_portfolio | Multiplier-correct Stock Token portfolio + USDG balance for any address. |
get_coin | Price/volume/liquidity/holders for any token by address (memecoin or Stock Token). |
list_trending_coins | The chain's trending pools right now. |
get_recent_launches | Recent NOXA + The Odyssey launches, scanned from on-chain logs. |
watch_launches | Watch live for new launches for up to 120s. |
search_token | Find a token by ticker, name, or address. |
hood-mcp-trading β wallet server (explicitly opt-in)Separate binary, stdio only, refuses to start unless both are set:
| Tool | What it does |
|---|---|
get_my_portfolio | This wallet's ETH, USDG, and Stock Token positions. Read-only. |
get_swap_quote | Quote a Uniswap swap without signing. Read-only. |
execute_swap | Guarded. Preview β confirm: true β broadcast. Spend-capped. |
transfer_usdg | Guarded. Preview β confirm: true β broadcast. Spend-capped. |
See Safety model for the full guard design. Summary:
HOOD_MCP_ENABLE_TRADING=1.HOOD_MCP_ACKNOWLEDGE_ELIGIBILITY=1
(Stock Tokens are barred to US/Canada/UK/Switzerland persons β see below).HOOD_MCP_MAX_SPEND_USDG (per-call) and HOOD_MCP_MAX_SESSION_USDG (per-session,
in-memory, resets on restart) before anything is signed.execute_swap / transfer_usdg always returns a
simulation (recipient, amount, token, min-received) and signs nothing. Only a second call
with confirm: true and identical arguments broadcasts.Stock Tokens are tokenized debt securities (issuer: Robinhood Assets (Jersey) Ltd) and may
not be offered, sold, or delivered to US persons (additional limits: Canada, UK, Switzerland).
The restriction is legal/front-end enforced, not contract-level β execute_swap throws unless
the operator has explicitly acknowledged eligibility. Memecoins are unrestricted.
See .env.example for the full annotated list. Nothing is required for the
data server; the trading server requires the two kill-switch variables above.
The HTTP transport has a documented seam (src/x402-seam.ts) to paywall future metered tools
(deep history, firehose) via the sibling hood402 USDG-on-Robinhood-Chain x402
rail once it exists. Every tool this package ships today stays free regardless.
Depends on hoodchain from npm; for local development against an unpublished SDK checkout:
npm i ../robinhood-chain-sdk.
Metadata is prepared, not submitted β publishing to a registry is a one-way, attributed action the owner should take:
server.json in this repo validates against the
official schema.
Submit with the mcp-publisher CLI once
hood-mcp is live on npm..mcpb bundle
(smithery mcp publish <url> -n <org/server>), not a static config file. Deploy the HTTP
transport (hood-mcp --http) somewhere public, then run
smithery mcp publish https://your-deployment/mcp -n nirholas/hood-mcp.All rights reserved. See LICENSE.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/hood-mcp)<a href="https://allmcps.com/mcp/hood-mcp"><img src="https://allmcps.com/api/badge/hood-mcp?style=directory" alt="Hood MCP on AllMCPs" /></a>