Use vatcheckapi with AI agents (MCP)
vatcheckapi ships a hosted Model Context Protocol (MCP) server. AI agents and assistants — Claude, Cursor, VS Code and any other MCP-capable client — can call the API as native tools, no SDK or glue code required.
https://api.vatcheckapi.com/mcp
Connect in seconds
Using Claude Code:
claude mcp add --transport http vatcheckapi https://api.vatcheckapi.com/mcp --header "apikey: YOUR_API_KEY"
Or add it to any MCP client configuration:
{
"mcpServers": {
"vatcheckapi": {
"url": "https://api.vatcheckapi.com/mcp",
"headers": { "apikey": "YOUR_API_KEY" }
}
}
}
Listing the available tools works without authentication. To execute tools, sign up for a free API key and send it as the apikey header.
Available tools
| Tool | Endpoint | Description |
|---|---|---|
check |
GET /v2/check |
Check a VAT number |
listBatches |
GET /v2/batches |
List batches |
createBatch |
POST /v2/batches |
Create a batch |
getBatch |
GET /v2/batches/{batchId} |
Get a batch |
getBatchValidations |
GET /v2/batches/{batchId}/validations |
List batch validations |
getStatus |
GET /v2/status |
Account quota status |
Tool calls are metered like regular API requests and return the same machine-readable errors, so your agent always knows how to proceed. Full details in the MCP documentation.