MCP Server
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:
- Look up sales and use tax rates by postal code, street address, or geographic coordinates.
- Retrieve jurisdiction-level tax breakdowns (state, county, city, and district).
- Query account usage metrics and quota information.
You’ll need a valid Ziptax API key. Create a free account at platform.zip.tax.
Connection details
Authentication
Every request must include a valid API key. Two methods are supported.
Header (recommended)
Query parameter
If both are present, the X-API-KEY header takes priority.
Tools
The server exposes two tools.
lookup_tax_rate
Look 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_metrics
Retrieve account usage metrics and quota information for your Ziptax account. Returns current request counts, limits, and entitlements. Takes no parameters.
Client configuration
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.
Claude Desktop
Add this block to your claude_desktop_config.json:
Cursor
Navigate to Settings → MCP and add a new server with:
- Name: Ziptax MCP Server
- Type: HTTP
- URL:
https://mcp.zip-tax.com/ - Headers:
X-API-KEY: your_api_key
Devin
In 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.
Generic MCP client
Any MCP client that supports Streamable HTTP transport can connect:
- Name: Ziptax MCP Server
- Type: HTTP
- URL:
https://mcp.zip-tax.com/ - Headers:
X-API-KEY: your_api_key
Error handling
When 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.
