Model Context Protocol · a curated collection

An MCP collection for market agents

One page to wire up the whole Sherwood: Robinhood's own official Agentic Trading MCP — the real, OAuth-secured server — alongside five independent, read-only companion tools (quotes, trends, a simulated rebalancer). Connect the real thing, then the safe extras.

◆ OFFICIAL · ROBINHOOD-RUN http · OAuth · beta · US equities

Robinhood Agentic Trading MCP

The flagship member of the collection is the real thing — Robinhood's own MCP server. Sherwood's robinhood_trading_mcp tool just hands your agent the verified connect details; it never proxies or sees your session. Authentication is Robinhood's own OAuth, so the agent gets a scoped token and never your password.

# Claude Code — connect Robinhood's official server claude mcp add robinhood-trading --transport http \ https://agent.robinhood.com/mcp/trading
Endpoint · https://agent.robinhood.com/mcp/trading
place_equity_order review_equity_order cancel_equity_order get_portfolio get_equity_positions get_equity_quotes get_watchlists search

⚠ Trade access is limited to a single dedicated, separately-funded Agentic account; every order shows a preview + push notification and can be denied. Significant risk, including total loss — you own every agent-executed trade. Sherwood is not Robinhood and does not run this server.

Plus five independent, read-only companions

Sherwood's own tools — safe by construction, no funds, no orders. Each has a typed zod schema and a plain-text response; HTTP calls time out at 8s, degrade gracefully, and honor HTTPS_PROXY. (With the flagship pointer above, the server registers 6 tools total.)

read-onlycrypto_quote

Spot USD price and 24h change for any CoinGecko ids, as a compact table.

read-onlystock_quote

Latest price, day OHLC, bid/ask and volume for a US ticker, via the keyless CBOE delayed-quotes CDN.

read-onlymarket_trending

The top ~7 trending coins right now — name, symbol, market-cap rank.

simulatedpaper_portfolio

Local paper math: total value, current weights, and a simulated buy/sell rebalance plan. Never places an order.

read-onlyrh_chain_token

Zero-config ERC-20 name/symbol/decimals lookup on Robinhood Chain (id 4663) via eth_call — the chain's public RPC is built in, no setup, plus an explorer link.

Install in one paste

Point Claude Code (or any MCP client) at the stdio server. Swap /ABSOLUTE/PATH/ for your checkout.

# Claude Code — add the server claude mcp add sherwood-mcp -- \ npx -y tsx /ABSOLUTE/PATH/projects/sherwood-mcp/src/server.ts
// .mcp.json { "mcpServers": { "sherwood-mcp": { "command": "npx", "args": ["-y","tsx", "/ABSOLUTE/PATH/.../src/server.ts"], "env": {} } } }