Skip to content
VS Code

sec edgar mcp for VS Code

io.github.stefanoamorelli/sec-edgar-mcp

SEC EDGAR MCP server that provides access to the US public filings through the US SEC EDGAR API

client:VS Code transport:stdio runtime:pypi

Install sec edgar mcp in VS Code

.vscode/mcp.json

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