VAT Validator MCP
Server Details
Validate EU, UK, AU VAT numbers for AI agents. EU ViDA e-invoicing compliance.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- OjasKord/vat-validator-mcp
- GitHub Stars
- 0
- Server Listing
- VAT Validator MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.7/5 across 2 of 2 tools scored.
The two tools have completely distinct purposes: one retrieves VAT rates for a jurisdiction, the other validates a VAT number against live registries. There is no overlap, and the descriptions clearly cross-reference each other for the intended workflow.
Both tool names follow the same verb_noun snake_case pattern: 'get_vat_rates' and 'validate_vat'. This is a predictable and consistent naming convention.
With only two tools, the server is on the lean side, but the narrow domain of VAT validation and rate retrieval justifies a small surface. The purpose is specific, so two tools feel appropriate rather than insufficient.
The tools cover the core operations of a VAT-related MCP: validating VAT numbers and retrieving current rates. Minor gaps exist, such as no bulk validation or VAT amount calculation, but these are not critical for the server's stated purpose.
Available Tools
2 toolsget_vat_ratesAInspect
Retrieves current VAT rates for a jurisdiction. Call this BEFORE calculating any invoice total or approving any VAT amount -- or immediately after validate_vat passing the country_code from that response. Use this when your agent needs to verify that the VAT rate on a supplier invoice matches the current official rate for that country before authorising payment. Returns current standard and reduced VAT rates for the jurisdiction. An agentic payment workflow that approves an invoice with an incorrect VAT rate creates a compounding compliance gap across every settled payment in that run -- VAT rates change without notice and cannot be sourced from training data. If the rate on the invoice differs from the rate returned here, do not approve payment.
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | No | ISO 2-letter code e.g. DE, FR, GB. Omit for all countries. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| rates | No | Present only when country_code is omitted -- full rate table for all supported jurisdictions |
| country | No | |
| reduced | No | Reduced VAT rates as percentages, if any apply |
| standard | No | Standard VAT rate as a percentage |
| checked_at | Yes | |
| source_url | Yes | |
| _disclaimer | No | |
| agent_action | Yes | |
| country_code | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses that VAT rates 'change without notice and cannot be sourced from training data,' which is a key operational caution. It also states the return content ('current standard and reduced VAT rates'). It doesn't mention potential errors or rate limits, but the read-only nature is clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is somewhat lengthy, but every sentence carries purposeful guidance: the main action, usage timing, workflow context, compliance rationale, and an explicit decision rule. It is front-loaded with the core function ('Retrieves current VAT rates') and remains focused despite the extra detail. Not excessively verbose for the value it provides.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with one optional parameter, yet the description covers the what, when, why, and output ('standard and reduced VAT rates'). It also provides a compliance warning and a behavioral rule. Combined with the existing output schema, no critical information is missing for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the country_code parameter (100% coverage). The description adds value by indicating where to obtain the parameter: 'passing the country_code from that response' (from validate_vat), and reinforces the optional behavior with 'Omit for all countries' which is already in the schema. This linkage to the sibling tool enriches the parameter semantics beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Retrieves current VAT rates for a jurisdiction.' It uses a specific verb and resource, and explicitly frames it against the sibling tool validate_vat ('or immediately after validate_vat'), which distinguishes it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use instructions: 'Call this BEFORE calculating any invoice total or approving any VAT amount -- or immediately after validate_vat.' It also provides a concrete use case (verifying supplier invoice rates) and a decision rule ('If the rate on the invoice differs from the rate returned here, do not approve payment').
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_vatAInspect
Validates a VAT number against live government registries. Call this BEFORE submitting any B2B payment via an agentic payment rail -- at the moment a VAT number appears on a supplier invoice and Stripe MPP, Alipay AI Pay, or Shopify UCP has not yet been called -- and BEFORE submitting any structured invoice under e-invoicing mandates now active or imminent: Belgium B2B (active Jan 2026), France B2B (Sep 2026), Poland KSeF (Feb 2026), AU GST digital reporting (ongoing). Use this when a supplier invoice carries a VAT number and your agent must confirm it is registered to the correct entity before approving payment or submitting a mandate-compliant e-invoice. Validates against EU VIES (ec.europa.eu, 27 member states) and AU ABR (abr.business.gov.au) live registries. Returns PROCEED / VERIFY_MANUALLY / HOLD verdict with fraud risk score 0-100 and name-match check. A settled B2B payment against an invalid or mismatched VAT number creates unrecoverable tax liability -- no agentic rail reverses a cleared cross-border transfer; an e-invoice submitted with an invalid VAT number is rejected at the mandate platform, halting the payables workflow. Pass the country_code from this response to get_vat_rates. One call, machine-ready verdict, no further analysis needed.
| Name | Required | Description | Default |
|---|---|---|---|
| vat_number | Yes | VAT number with country prefix. EU: DE123456789. AU: ABN12345678901. | |
| invoice_amount | No | Invoice amount in local currency — used in fraud risk weighting. | |
| invoice_company_name | No | Company name as it appears on the invoice — if provided, cross-checks against registry and flags mismatches. |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | Whether the VAT number is currently registered and active per the source registry |
| address | No | |
| summary | No | |
| checked_at | Yes | |
| name_match | No | |
| source_url | Yes | |
| vat_number | Yes | |
| _disclaimer | No | |
| agent_action | Yes | Machine-readable verdict |
| company_name | No | |
| jurisdiction | Yes | |
| fraud_signals | No | |
| recommendation | No | |
| fraud_risk_level | No | |
| fraud_risk_score | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully discloses behavior: it validates against EU VIES and AU ABR live registries, returns a PROCEED/VERIFY_MANUALLY/HOLD verdict with fraud risk score and name-match check. It also reveals critical downstream consequences (unrecoverable tax liability for invalid VAT, rejection at mandate platforms) and states the tool is a one-call, machine-ready verdict, providing complete transparency about its operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then expands into timing, registries, returns, and consequences. While it is longer than typical descriptions, the added length is justified by the compliance-critical context. There is minor redundancy between 'Call this BEFORE...' and 'Use this when...', but overall structure is logical and every section adds meaningful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no annotations, the description is highly complete: it covers the exact use case, timing, data sources, return format, risk implications, and integration with a sibling tool. For a tool with three parameters and an output schema (not shown), this description fully equips an agent to select and invoke the tool correctly, even without seeing the output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the schema descriptions already explain invoice_amount and invoice_company_name. The description adds value by connecting the response (country_code) to the sibling tool get_vat_rates, and it mentions the fraud risk weighting indirectly, enriching the parameter context beyond the schema. This justifies a score slightly above the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Validates') and object ('VAT number against live government registries'), making the core function immediately clear. It also distinguishes itself from the sibling tool by explicitly referencing how to pass country_code to get_vat_rates, showing where this tool fits relative to alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit timing instructions ('Call this BEFORE submitting any B2B payment...') and describes the exact trigger ('when a supplier invoice carries a VAT number...'). It also names specific integration points (Stripe MPP, Alipay AI Pay, Shopify UCP) and explains the relationship to get_vat_rates, leaving no ambiguity about when to use this tool versus the sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI assistants to answer tax compliance questions (VAT, sales tax, GST) and validate EU VAT numbers in real time via the VIES registry.212MIT
- Alicense-qualityCmaintenanceSLA'd EU VAT number validation for AI agents via VIES, with caching and circuit-breaking to handle flaky upstream, returning valid/invalid/unavailable responses.MIT
- AlicenseAqualityDmaintenanceEnables real-time validation of EU VAT numbers using the official VIES service. Supports all 27 EU member states with automatic country code detection and provides company information for valid VAT numbers.41MIT
- Alicense-qualityBmaintenanceLocal MCP server for validating EU VAT numbers using the official VIES API. Enables AI to check VAT validity and optionally retrieve consultation numbers for legal proof.MIT
Your Connectors
Sign in to create a connector for this server.