Robinhood MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ROBINHOOD_PASSWORD | Yes | Your Robinhood password | |
| ROBINHOOD_USERNAME | Yes | Your Robinhood email address | |
| ROBINHOOD_TOTP_SECRET | No | Your 2FA secret key (base32-encoded string, e.g., JBSWY3DPEHPK3PXP). Optional, for 2FA. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| robinhood_get_portfolioA | Get current portfolio value and performance metrics. Returns portfolio profile with equity, extended hours equity, withdrawable amount, and other account details. |
| robinhood_get_positionsA | Get all current stock positions with details. Returns a dict mapping stock symbols to position details including price, quantity, average buy price, equity, and percent change. |
| robinhood_get_positionA | Get one current stock position with a faster single-symbol lookup. |
| robinhood_get_watchlistC | Get stocks in a watchlist. |
| robinhood_get_quoteB | Get real-time quote for a stock symbol. |
| robinhood_get_fundamentalsC | Get fundamental data for a stock. |
| robinhood_get_historicalsC | Get historical price data for a stock. |
| robinhood_get_newsA | Get recent news articles for a stock. |
| robinhood_get_earningsC | Get earnings data for a stock. |
| robinhood_get_ratingsB | Get analyst ratings summary for a stock. |
| robinhood_get_dividendsA | Get all dividend payments received. Returns list of dividend payments with amount, payable date, record date, and instrument details. |
| robinhood_get_options_positionsA | Get all current options positions (read-only). Returns list of options positions with chain symbol, type, strike price, expiration, and quantity. |
| robinhood_search_symbolsB | Search for stock symbols by company name or ticker. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool has a distinct purpose, clearly indicated by its name and description. There is no ambiguity between tools like 'get_position' (single) and 'get_positions' (all) as they serve different use cases.
All tools follow a consistent 'robinhood_verb_noun' pattern using snake_case, making them predictable and easy to navigate.
13 tools is a well-scoped set for a financial data server, covering key areas like dividends, earnings, fundamentals, portfolio, and positions without being overwhelming.
The set covers most common read-only data needs for Robinhood users, but lacks write operations (e.g., buy/sell) and some advanced data like option chains or order history, which is acceptable for a data-focused server.