Skip to content
VS Code

EDGAR Filings for VS Code

io.github.dxfory/edgar-mcp

SEC 10-K/10-Q symbols, segment revenue, BDC non-accrual, and Form 4 lines with citations.

client:VS Code transport:stdio runtime:pypi

Install EDGAR Filings in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "edgar-identity",
      "description": "EDGAR_IDENTITY",
      "password": true
    }
  ],
  "servers": {
    "edgar-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "edgar-filings-mcp"
      ],
      "env": {
        "EDGAR_IDENTITY": "${input:edgar-identity}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

EDGAR Filings in other clients