finance mcp for VS Code
io.github.adididitagain/finance-mcp
Live stock, crypto, SEC filings, insider trades, FX and macro data for LLM agents.
client:VS Code
transport:stdio
runtime:npm
Install finance mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sec-user-agent",
"description": "SEC_USER_AGENT",
"password": true
}
],
"servers": {
"finance-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"finance-data-mcp"
],
"env": {
"SEC_USER_AGENT": "${input:sec-user-agent}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs