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. |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tasks | {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
},
"prompts": {
"get": {}
},
"resources": {
"read": {}
}
}
} |
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| robinhood_get_portfolio | Get current portfolio value and performance metrics. Returns portfolio profile with equity, extended hours equity, withdrawable amount, and other account details. |
| robinhood_get_positions | 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_watchlist | Get stocks in a watchlist. Args: name: Watchlist name (default: "Default") Returns list of watchlist items with instrument details. |
| robinhood_get_quote | Get real-time quote for a stock symbol. Args: symbol: Stock ticker symbol (e.g., "AAPL", "TSLA") Returns quote data including last trade price, bid, ask, previous close, and trading status. |
| robinhood_get_fundamentals | Get fundamental data for a stock. Args: symbol: Stock ticker symbol Returns fundamentals including P/E ratio, market cap, dividend yield, 52-week high/low, and more. |
| robinhood_get_historicals | Get historical price data for a stock. Args: symbol: Stock ticker symbol interval: Time interval (5minute, 10minute, hour, day, week) span: Time span (day, week, month, 3month, year, 5year) Returns list of OHLCV data points (open, high, low, close, volume). |
| robinhood_get_news | Get recent news articles for a stock. Args: symbol: Stock ticker symbol Returns list of news articles with title, URL, source, and publication date. |
| robinhood_get_earnings | Get earnings data for a stock. Args: symbol: Stock ticker symbol Returns list of earnings reports with EPS, report date, analyst estimates, and actual vs expected. |
| robinhood_get_ratings | Get analyst ratings summary for a stock. Args: symbol: Stock ticker symbol Returns ratings summary with buy, hold, sell counts, and overall recommendation. |
| robinhood_get_dividends | Get all dividend payments received. Returns list of dividend payments with amount, payable date, record date, and instrument details. |
| robinhood_get_options_positions | Get all current options positions (read-only). Returns list of options positions with chain symbol, type, strike price, expiration, and quantity. |
| robinhood_search_symbols | Search for stock symbols by company name or ticker. Args: query: Search query (company name or partial ticker) Returns list of matching instruments with symbol, name, and other details. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |