vanoe intelligence mcp for VS Code
io.github.vanoe-ai/vanoe-intelligence-mcp
Stock verdicts, trend stage, P&F, breadth, macro regime, SEC filings. Free key: api.vanoe.ai/signup
client:VS Code
transport:stdio
runtime:pypi
Install vanoe intelligence mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vanoe-api-key",
"description": "VANOE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vanoe-api-base-url",
"description": "VANOE_API_BASE_URL",
"password": true
}
],
"servers": {
"vanoe-intelligence-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"vanoe-intelligence-mcp"
],
"env": {
"VANOE_API_KEY": "${input:vanoe-api-key}",
"VANOE_API_BASE_URL": "${input:vanoe-api-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