npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@boomtax/mcp-server

v1.0.0

Published

MCP server for querying BoomTax filing data through AI assistants

Readme

BoomTax MCP Server

Query your BoomTax tax filing data from any AI assistant that supports the Model Context Protocol — Claude, Cursor, Windsurf, VS Code Copilot, and more.

Tools

| Tool | Description | |------|-------------| | list_filings | List filings with filters (tax year, form type, status) | | get_filing_details | Filing detail with payer summary and e-file status | | get_filing_summary | Aggregate counts by status and form type | | list_filing_forms | List forms in a filing | | get_form | Form metadata (type, status, dates) | | get_efile_status | E-file request/response timeline | | get_efile_errors | E-file errors with codes and messages | | list_payers | List payers across filings | | get_payer | Payer details for a filing | | list_filing_types | All supported filing types and e-file availability |

All tools are read-only. TINs are always masked (last 4 digits only).

Prerequisites

Your BoomTax account must have API access enabled. Contact [email protected] to request access.

Setup

Option A: Remote (recommended)

Connect directly to BoomTax — no install required. Requires a BoomTax API token.

Option B: Local (npx)

npx @boomtax/mcp-server

Requires environment variables:

  • BOOMTAX_API_USERNAME — your BoomTax email
  • BOOMTAX_API_PASSWORD — your BoomTax password
  • BOOMTAX_API_URL — (optional) defaults to https://api.boomtax.com

Configuration by AI Client

Claude Desktop

Remote:

{
  "mcpServers": {
    "boomtax": {
      "url": "https://api.boomtax.com/mcp"
    }
  }
}

Local:

{
  "mcpServers": {
    "boomtax": {
      "command": "npx",
      "args": ["@boomtax/mcp-server"],
      "env": {
        "BOOMTAX_API_URL": "https://api.boomtax.com",
        "BOOMTAX_API_USERNAME": "[email protected]",
        "BOOMTAX_API_PASSWORD": "your-password"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add boomtax --transport http https://api.boomtax.com/mcp

Or local:

claude mcp add boomtax -- npx @boomtax/mcp-server

Cursor

Add to Cursor Settings > MCP Servers:

Remote:

{
  "mcpServers": {
    "boomtax": {
      "url": "https://api.boomtax.com/mcp"
    }
  }
}

Local:

{
  "mcpServers": {
    "boomtax": {
      "command": "npx",
      "args": ["@boomtax/mcp-server"],
      "env": {
        "BOOMTAX_API_URL": "https://api.boomtax.com",
        "BOOMTAX_API_USERNAME": "[email protected]",
        "BOOMTAX_API_PASSWORD": "your-password"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "boomtax": {
      "command": "npx",
      "args": ["@boomtax/mcp-server"],
      "env": {
        "BOOMTAX_API_URL": "https://api.boomtax.com",
        "BOOMTAX_API_USERNAME": "[email protected]",
        "BOOMTAX_API_PASSWORD": "your-password"
      }
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "boomtax": {
      "command": "npx",
      "args": ["@boomtax/mcp-server"],
      "env": {
        "BOOMTAX_API_URL": "https://api.boomtax.com",
        "BOOMTAX_API_USERNAME": "${input:boomtaxUsername}",
        "BOOMTAX_API_PASSWORD": "${input:boomtaxPassword}"
      }
    }
  },
  "inputs": [
    {
      "id": "boomtaxUsername",
      "type": "promptString",
      "description": "BoomTax API username (email)",
      "password": false
    },
    {
      "id": "boomtaxPassword",
      "type": "promptString",
      "description": "BoomTax API password",
      "password": true
    }
  ]
}

Example Prompts

Once connected, try asking your AI assistant:

  • "What filings do I have for tax year 2025?"
  • "Show me a summary of all my filings"
  • "What's the e-file status of my W-2 filing?"
  • "Are there any e-file errors on my 1099-NEC filing?"
  • "List all my payers"
  • "What filing types does BoomTax support?"

Security

  • All data access is scoped to your authenticated account
  • TINs/SSNs are always masked (last 4 digits only)
  • All tools are read-only — no data can be modified
  • The local server authenticates via the same JWT tokens as the REST API
  • API access requires explicit opt-in on your BoomTax account

License

Proprietary. Copyright BoomTax.