Server data from the Official MCP Registry
Official MCP server: EU VAT validation via VIES, plus offline rates and format checks.
Official MCP server: EU VAT validation via VIES, plus offline rates and format checks.
vatnode-mcp is a well-structured MCP server with proper authentication, secure credential handling, and appropriate permissions for its stated purpose. The API key is correctly sourced from environment variables only, network access is scoped to the official vatnode API, and free tools operate entirely offline. Minor code quality observations exist but do not present security risks. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
5 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: VATNODE_API_KEY
Environment variable: VATNODE_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-vatnode-vatnode-mcp": {
"env": {
"VATNODE_API_KEY": "your-vatnode-api-key-here",
"VATNODE_API_URL": "your-vatnode-api-url-here"
},
"args": [
"-y",
"vatnode-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Official Model Context Protocol server for vatnode — VAT validation and EU tax data for AI agents.
Lets AI assistants (Claude Desktop, Cursor, ChatGPT, Continue, Cline, …) look up VAT rates, check VAT number formats, and validate VAT IDs against the EU VIES service without leaving the chat.
npx| Tool | Free | Description |
|---|---|---|
get_country_vat_rates | ✅ | Standard / reduced / super-reduced / parking rates + VAT number format for a country |
list_eu_vat_rates | ✅ | All 27 EU member states (plus XI for Northern Ireland) at once |
check_vat_format | ✅ | Offline syntactic check of a VAT number against the country regex |
list_supported_countries | ✅ | All 45 supported countries and which ones support full VIES validation |
validate_vat_number | 🔑 | Live VIES validation — returns validity, company name, address, registration date, and optional consultation number for audit proof |
Free tools work fully offline — data is bundled via eu-vat-rates-data and updated daily from the European Commission TEDB.
validate_vat_number requires a vatnode API key. The free tier includes a monthly request quota — get one in 30 seconds.
Add to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"vatnode": {
"command": "npx",
"args": ["-y", "vatnode-mcp"],
"env": {
"VATNODE_API_KEY": "vat_live_..."
}
}
}
}
Restart Claude Desktop. The vatnode tools will appear in the tool picker.
You can omit VATNODE_API_KEY if you only need the free tools (rates, format checks).
Settings → MCP → Add new server:
{
"mcpServers": {
"vatnode": {
"command": "npx",
"args": ["-y", "vatnode-mcp"],
"env": { "VATNODE_API_KEY": "vat_live_..." }
}
}
}
Configure as an stdio MCP server with the same npx -y vatnode-mcp command. See the Apps SDK docs.
Any MCP-compatible client can connect — point it at npx -y vatnode-mcp and (optionally) pass VATNODE_API_KEY via environment.
validate_vat_number requires a vatnode account. The platform also offers things the MCP doesn't expose:
You: What's the VAT rate in Finland and Germany?
(Agent calls
get_country_vat_ratesfor FI and DE — free, no key.)Agent: Finland's standard VAT is 25.5%, Germany's is 19%. Finland has reduced rates of 14% and 10%; Germany has 7%.
You: Is IE6388047V a valid VAT?
(Agent calls
validate_vat_number— requires API key.)Agent: Yes, it's valid. Registered to GOOGLE IRELAND LIMITED at Gordon House, Barrow Street, Dublin 4.
| Env var | Required | Default | Purpose |
|---|---|---|---|
VATNODE_API_KEY | for validate_vat_number | — | API key from https://vatnode.dev |
VATNODE_API_URL | no | https://api.vatnode.dev | Override the API base (self-hosting / staging) |
Bug reports and PRs welcome. Open an issue first for non-trivial changes so we can align on direction.
git clone https://github.com/vatnode/vatnode-mcp.git
cd vatnode-mcp
npm install
npm test
Releases are published to npm via Trusted Publishing — no NPM_TOKEN secret, every release signed with npm provenance.
# bump version in package.json (and VERSION in src/index.ts), commit, then:
git tag v0.2.1
git push --tags
CI on .github/workflows/release.yml picks up the tag and publishes.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.