Fundamentals MCP for VS Code
io.github.simontarara62/fundamentals-mcp
Unofficial read-only MCP for fundamentals, macro & news (EDGAR + FRED + Tavily, BYO-key).
client:VS Code
transport:stdio
runtime:pypi
Install Fundamentals MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fund-env-file",
"description": "FUND_ENV_FILE",
"password": true
},
{
"type": "promptString",
"id": "fund-edgar-user-agent",
"description": "FUND_EDGAR_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "fund-fred-api-key",
"description": "FUND_FRED_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fund-tavily-api-key",
"description": "FUND_TAVILY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fund-edgar-min-interval",
"description": "FUND_EDGAR_MIN_INTERVAL",
"password": true
},
{
"type": "promptString",
"id": "fund-fred-min-interval",
"description": "FUND_FRED_MIN_INTERVAL",
"password": true
},
{
"type": "promptString",
"id": "fund-tavily-min-interval",
"description": "FUND_TAVILY_MIN_INTERVAL",
"password": true
}
],
"servers": {
"fundamentals-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"fundamentals-mcp"
],
"env": {
"FUND_ENV_FILE": "${input:fund-env-file}",
"FUND_EDGAR_USER_AGENT": "${input:fund-edgar-user-agent}",
"FUND_FRED_API_KEY": "${input:fund-fred-api-key}",
"FUND_TAVILY_API_KEY": "${input:fund-tavily-api-key}",
"FUND_EDGAR_MIN_INTERVAL": "${input:fund-edgar-min-interval}",
"FUND_FRED_MIN_INTERVAL": "${input:fund-fred-min-interval}",
"FUND_TAVILY_MIN_INTERVAL": "${input:fund-tavily-min-interval}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs