Skip to content
VS Code

EDGAR (SEC filings) for VS Code

io.github.mcpwright/edgar-mcp

SEC filings in your agent: issuers, Reg CF/D/A raises, XBRL financials, insider trades.

client:VS Code transport:stdio runtime:pypi

Install EDGAR (SEC filings) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "edgar-mcp-user-agent",
      "description": "EDGAR_MCP_USER_AGENT",
      "password": true
    }
  ],
  "servers": {
    "edgar-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcpwright-edgar"
      ],
      "env": {
        "EDGAR_MCP_USER_AGENT": "${input:edgar-mcp-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

EDGAR (SEC filings) in other clients