edgarmcp for VS Code
io.github.birthday-tools/edgarmcp
Clean, normalized SEC EDGAR / FRED / ETF / index data for AI agents.
client:VS Code
transport:stdio
runtime:pypi
Install edgarmcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "edgar-user-agent",
"description": "EDGAR_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "fred-api-key",
"description": "FRED_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openfigi-api-key",
"description": "OPENFIGI_API_KEY",
"password": true
}
],
"servers": {
"edgarmcp": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-edgar"
],
"env": {
"EDGAR_USER_AGENT": "${input:edgar-user-agent}",
"FRED_API_KEY": "${input:fred-api-key}",
"OPENFIGI_API_KEY": "${input:openfigi-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs