hood mcp for VS Code
io.github.nirholas/hood-mcp
Robinhood Chain data + guarded trading for AI agents: Stock Token quotes, portfolios, launches
client:VS Code
transport:stdio
runtime:npm
Install hood mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hood-mcp-network",
"description": "HOOD_MCP_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "alchemy-key",
"description": "ALCHEMY_KEY",
"password": true
}
],
"servers": {
"hood-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hood-mcp"
],
"env": {
"HOOD_MCP_NETWORK": "${input:hood-mcp-network}",
"ALCHEMY_KEY": "${input:alchemy-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs