Skip to content
VS Code

xbrlkit for VS Code

ai.robosystems/xbrlkit

Read SEC EDGAR and XBRL filings with an AI: 18 tools over the filing itself. Local, free, no account

client:VS Code transport:stdio runtime:pypi

Install xbrlkit in VS Code

.vscode/mcp.json

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

xbrlkit in other clients