Skip to content
VS Code

EdgarParser MCP for VS Code

io.github.henrysouchien/edgar-mcp

MCP stdio server for source-backed SEC EDGAR financial data from the hosted EdgarParser API.

client:VS Code transport:stdio runtime:pypi

Install EdgarParser MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "edgar-api-key",
      "description": "EDGAR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "edgar-api-url",
      "description": "EDGAR_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "edgar-mcp-output-dir",
      "description": "EDGAR_MCP_OUTPUT_DIR",
      "password": true
    }
  ],
  "servers": {
    "edgar-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "edgar-mcp"
      ],
      "env": {
        "EDGAR_API_KEY": "${input:edgar-api-key}",
        "EDGAR_API_URL": "${input:edgar-api-url}",
        "EDGAR_MCP_OUTPUT_DIR": "${input:edgar-mcp-output-dir}"
      }
    }
  }
}

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

EdgarParser MCP in other clients