Skip to content
VS Code

filingrail mcp for VS Code

io.github.adamhudson777/filingrail-mcp

SEC EDGAR financials, insider trades, 8-K events, and 13F holdings as MCP tools.

client:VS Code transport:stdio runtime:pypi

Install filingrail mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rapidapi-key",
      "description": "RAPIDAPI_KEY",
      "password": true
    }
  ],
  "servers": {
    "filingrail-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "filingrail-mcp"
      ],
      "env": {
        "RAPIDAPI_KEY": "${input:rapidapi-key}"
      }
    }
  }
}

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

filingrail mcp in other clients