MCP Server
Real-time sales tax tools for AI agents via Model Context Protocol
Real-time sales tax tools for AI agents via Model Context Protocol
The Ziptax MCP Server gives AI agents and LLM-powered applications direct access to real-time U.S. and Canadian sales tax data. MCP is an open standard that lets AI applications securely connect to external tools and data sources. Once connected, your agent can:
You’ll need a valid Ziptax API key. Create a free account at platform.zip.tax.
Every request must include a valid API key. Two methods are supported.
If both are present, the X-API-KEY header takes priority.
The server exposes two tools.
lookup_tax_rateLook up sales and use tax rates for a U.S. or Canadian location. Provide a postal code at minimum, or a full street address for door-level precision. Returns tax rates broken down by jurisdiction (state, county, city, district).
Parameters
Provide either address for a door-level lookup, or lat and lng for
a geographic point lookup.
Example response
The tool response mirrors the Ziptax REST API by Address response:
get_account_metricsRetrieve account usage metrics and quota information for your Ziptax account. Returns current request counts, limits, and entitlements. Takes no parameters.
Below are configuration examples for connecting popular MCP clients to the
Ziptax MCP Server. Replace your_api_key with your Ziptax API key from
platform.zip.tax.
Add this block to your claude_desktop_config.json:
Navigate to Settings → MCP and add a new server with:
https://mcp.zip-tax.com/X-API-KEY: your_api_keyIn Devin, add the Ziptax MCP integration from the MCP Marketplace, or configure it manually under Settings → MCP Marketplace → Add Your Own:
Store your API key as a secret named ZIPTAX_API_KEY in Devin’s Secrets
Manager.
Any MCP client that supports Streamable HTTP transport can connect:
https://mcp.zip-tax.com/X-API-KEY: your_api_keyWhen a request fails, the MCP Server returns an error message in the tool result. For the full list of API response codes, see the Response Codes reference.