FinData MCP for VS Code
io.github.sapph1re/findata-mcp
Stocks, fundamentals, FRED economics, SEC filings & crypto. x402 micropayments, $0.01/call.
client:VS Code
transport:stdio
runtime:pypi
Install FinData MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "evm-private-key",
"description": "EVM_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "findata-backend-url",
"description": "FINDATA_BACKEND_URL",
"password": true
}
],
"servers": {
"findata-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"findata-mcp"
],
"env": {
"EVM_PRIVATE_KEY": "${input:evm-private-key}",
"FINDATA_BACKEND_URL": "${input:findata-backend-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs