Skip to content
VS Code

SEC EDGAR for VS Code

io.github.danishashko/edgar-mcp

SEC EDGAR filings (10-K, 10-Q, 8-K), XBRL financials, and full-text filing search. No API key.

client:VS Code transport:stdio runtime:npm

Install SEC EDGAR in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sec-user-agent",
      "description": "SEC_USER_AGENT",
      "password": true
    }
  ],
  "servers": {
    "edgar-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "edgar-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

SEC EDGAR in other clients