Robinhood Crypto for VS Code
io.github.nirholas/robinhood-mcp
Robinhood Crypto Trading API for AI agents: quotes, holdings, orders read-only; opt-in trading.
client:VS Code
transport:stdio
runtime:npm
Install Robinhood Crypto in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "robinhood-crypto-api-key",
"description": "ROBINHOOD_CRYPTO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "robinhood-crypto-private-key",
"description": "ROBINHOOD_CRYPTO_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "robinhood-crypto-api-version",
"description": "ROBINHOOD_CRYPTO_API_VERSION",
"password": true
},
{
"type": "promptString",
"id": "robinhood-crypto-base-url",
"description": "ROBINHOOD_CRYPTO_BASE_URL",
"password": true
}
],
"servers": {
"robinhood-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"robinhood-mcp"
],
"env": {
"ROBINHOOD_CRYPTO_API_KEY": "${input:robinhood-crypto-api-key}",
"ROBINHOOD_CRYPTO_PRIVATE_KEY": "${input:robinhood-crypto-private-key}",
"ROBINHOOD_CRYPTO_API_VERSION": "${input:robinhood-crypto-api-version}",
"ROBINHOOD_CRYPTO_BASE_URL": "${input:robinhood-crypto-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs