Skip to content
VS Code

IRS SOI (income by ZIP) for VS Code

io.github.mcpwright/soi-mcp

IRS income & tax stats by ZIP in your agent: AGI distribution, tax, credits, deductions.

client:VS Code transport:stdio runtime:pypi

Install IRS SOI (income by ZIP) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "soi-mcp-store",
      "description": "SOI_MCP_STORE",
      "password": true
    }
  ],
  "servers": {
    "soi-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcpwright-soi"
      ],
      "env": {
        "SOI_MCP_STORE": "${input:soi-mcp-store}"
      }
    }
  }
}

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

IRS SOI (income by ZIP) in other clients