pypi eurovalidate-mcpstdioMITupdated 13d ago
MCP (Model Context Protocol) server for EuroValidate — lets Claude, ChatGPT and any MCP-capable agent validate EU VAT numbers (VIES), IBANs and EORI customs numbers, look up company data, and fetch VAT rates through one reliable REST API.
What can you do with eurovalidate mcp?
EuroValidate MCP Server
MCP (Model Context Protocol) server for EuroValidate — lets Claude, ChatGPT and any MCP-capable agent validate EU VAT numbers (VIES), IBANs and EORI customs numbers, look up company data, and fetch VAT rates through one reliable REST API.
Why
Validating European business data normally means juggling five fragmented government services: the VIES SOAP API (which times out constantly — Germany alone generates 95% of its errors), the EC EORI endpoint, HMRC, GLEIF, and national registries. EuroValidate wraps them into one cache-first JSON API with per-country circuit breakers and graceful degradation — and this MCP server exposes it to LLM agents as ready-to-use tools.
Tools
| Tool | What it does |
|---|---|
validate_vat |
Validate an EU/UK VAT number via VIES/HMRC — returns validity + registered company name & address (where the member state exposes it) + confidence level |
validate_iban |
Validate an IBAN (offline MOD-97) and resolve bank name + BIC |
validate_eori |
Validate an EORI customs number (EU / GB / XI Northern Ireland) |
lookup_company_by_lei |
Company data by Legal Entity Identifier (GLEIF) |
lookup_company_by_vat |
Company data by VAT number — fallback for DE/ES where VIES hides names |
get_vat_rates |
Current VAT rates for an EU country |
check_service_status |
Live health of VIES (per country), EORI, HMRC, GLEIF — no API key needed |
Setup
- Get a free API key (100 requests/month, no credit card) at eurovalidate.com.
- Add the server to your MCP client:
Claude Desktop / Claude Code
{
"mcpServers": {
"eurovalidate": {
"command": "uvx",
"args": ["eurovalidate-mcp"],
"env": { "EUROVALIDATE_API_KEY": "your_api_key" }
}
}
}
Claude Code one-liner:
claude mcp add eurovalidate -e EUROVALIDATE_API_KEY=your_api_key -- uvx eurovalidate-mcp
Any other MCP client
Run over stdio:
EUROVALIDATE_API_KEY=your_api_key uvx eurovalidate-mcp
Or install permanently: pip install eurovalidate-mcp → eurovalidate-mcp.
Example prompts
- "Validate VAT number DE811569869 and tell me the company behind it"
- "Check if this IBAN is valid and which bank it belongs to: DE89 3704 0044 0532 0130 00"
- "Is VIES down for Germany right now?"
- "What's the VAT rate in Portugal?"
- "Validate the VAT numbers of these 5 suppliers before I invoice them"
Notes for agents (and humans)
- Germany and Spain never return company name/address over VIES (data-protection law) — use
lookup_company_by_vatas a fallback. - Greece is
ELin VIES butGRin ISO 3166 — both are accepted. - Every response carries
confidence: HIGH|MEDIUM|LOW|UNKNOWNand the upstreamsource, so agents can reason about data freshness when a government service is down. - Free tier: 100 requests/month. Paid plans from €19/mo (500,000 requests/month) at eurovalidate.com.
Environment variables
| Variable | Required | Default |
|---|---|---|
EUROVALIDATE_API_KEY |
yes (except check_service_status) |
— |
EUROVALIDATE_BASE_URL |
no | https://api.eurovalidate.com |
License
MIT
mcp-name: io.github.Nitrych/eurovalidate-mcp
Install
Add eurovalidate mcp to your client. Pick the one you use.
claude mcp add eurovalidate-mcp -- uvx eurovalidate-mcpcodex mcp add eurovalidate-mcp -- uvx eurovalidate-mcpamp mcp add eurovalidate-mcp -- uvx eurovalidate-mcp{
"mcpServers": {
"eurovalidate-mcp": {
"command": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"eurovalidate-mcp": {
"command": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"eurovalidate-mcp","command":"uvx","args":["eurovalidate-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"eurovalidate-mcp": {
"command": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"eurovalidate-mcp": {
"command": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"eurovalidate-mcp": {
"command": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"eurovalidate-mcp": {
"type": "local",
"command": "uvx",
"args": [
"eurovalidate-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"eurovalidate-mcp": {
"command": {
"path": "uvx",
"args": [
"eurovalidate-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx eurovalidate-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
7 tools
eurovalidate mcp exposes 7 tools to a connected agent.
- validate_vat
- Validate an EU/UK VAT number via VIES/HMRC — returns validity + registered company name & address (where the member state exposes it) + confidence level
- validate_iban
- Validate an IBAN (offline MOD-97) and resolve bank name + BIC
- validate_eori
- Validate an EORI customs number (EU / GB / XI Northern Ireland)
- lookup_company_by_lei
- Company data by Legal Entity Identifier (GLEIF)
- lookup_company_by_vat
- Company data by VAT number — fallback for DE/ES where VIES hides names
- get_vat_rates
- Current VAT rates for an EU country
- check_service_status
- Live health of VIES (per country), EORI, HMRC, GLEIF — no API key needed
Score
72 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 6 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 7 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Aug 26, 2026 |