Robinhood Mcp Server
@rohitsingh-iitd
About Robinhood Mcp Server
The Robinhood MCP Server provides a comprehensive interface to the Robinhood Crypto API. This server handles authentication, account management, market data retrieval, and trading operations through both REST API and WebSocket interfaces.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"robinhood": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-p",
"8000:8000",
"-p",
"8001:8001",
"-e",
"ROBINHOOD_API_KEY",
"-e",
"ROBINHOOD_PRIVATE_KEY",
"-e",
"HOST=0.0.0.0",
"-e",
"PORT=8000",
"-e",
"DEBUG=False",
"-e",
"LOG_LEVEL=INFO",
"-e",
"RATE_LIMIT_ENABLED=True",
"-e",
"RATE_LIMIT_REQUESTS=100",
"-e",
"RATE_LIMIT_PERIOD=60",
"robinhood-mcp-server"
],
"env": {
"ROBINHOOD_API_KEY": "<YOUR_API_KEY>",
"ROBINHOOD_PRIVATE_KEY": "<YOUR_BASE64_ENCODED_PRIVATE_KEY>"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Robinhood Mcp Server?
The Robinhood MCP Server provides a comprehensive interface to the Robinhood Crypto API. It handles authentication, account management, market data retrieval, and trading operations through both REST API and WebSocket interfaces.
How to use Robinhood Mcp Server?
Install dependencies, configure environment variables (ROBINHOOD_API_KEY and ROBINHOOD_PRIVATE_KEY) in a .env file, then start the server with python -m src.main. The server exposes REST API endpoints on port 8000 and a WebSocket server on port 8001.
Key features of Robinhood Mcp Server
- REST API for account info, market data, and trading
- WebSocket server for real-time market data and order updates
- Rate limiting and input validation for security
- Configurable host, port, logging, and debug mode
- Ping/pong keep‑alive mechanism for WebSocket connections
Use cases of Robinhood Mcp Server
- Retrieve account holdings and estimated prices
- Place and cancel crypto orders programmatically
- Subscribe to real‑time best bid/ask prices
- Automate trading strategies with order status updates
FAQ from Robinhood Mcp Server
What are the prerequisites?
Python 3.8 or higher and pip are required.
How do I authenticate?
Set the ROBINHOOD_API_KEY and ROBINHOOD_PRIVATE_KEY environment variables in a .env file. The private key must be base64‑encoded.
What default ports does the server use?
The REST API server uses port 8000, and the WebSocket server uses port 8001. Both can be changed via environment variables.
How can I test the server?
Run python -m tests.test_server to execute validation tests.
Is rate limiting enabled by default?
Yes, rate limiting is enabled by default with 100 requests per 60‑second period. It can be disabled or adjusted via environment variables.
More Finance & Commerce MCP servers
Polygon.io MCP Server
polygon-ioAn MCP server for Massive.com Financial Market Data
Crypto Price & Market Analysis MCP Server
truss44A Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis via CoinCap's API. Enables Claude and other MCP clients to fetch crypto prices, analyze market trends, and track historical data.
MCP Yahoo Finance
maxscheijenA Model Context Protocol (MCP) server for Yahoo Finance.
Financial Datasets MCP Server
financial-datasetsAn MCP server for interacting with the Financial Datasets stock market API.
₿itcoin & Lightning Network MCP Server
AbdelStarkBitcoin & Lightning Network MCP Server.
Comments