Vatnode

Created By
vatnode24 days ago
vatnode is an EU VAT validation API built for developers, SaaS platforms, fintech products, e-commerce, and ERP integrators selling B2B across Europe. Basic VAT APIs usually return only `valid: true`. vatnode returns a richer audit-ready validation record: VIES consultation number for qualified checks, `checkId`, `verifiedAt`, source authority, company data, and country VAT rate details in one REST response. Use it at checkout, before invoice generation, during B2B onboarding, or as part of recurring customer VAT monitoring. - EU VAT validation via REST JSON - VIES consultation number for qualified checks - `checkId` + `verifiedAt` audit trail fields - National registry fallback and enrichment for covered countries - Local VAT name, abbreviation, currency, and rate tiers - Cached responses under 50ms; live checks typically 200–800ms - Optional VAT monitoring and webhook alerts on paid plans - EU-hosted in Germany - Test keys for deterministic CI/CD - Free tier, no credit card Built for teams that need more than a boolean VAT result — they need validation evidence they can store with invoices and customer records.
Overview

vatnode-mcp

npm version Tests License: MIT vatnode/vatnode-mcp MCP server

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.

  • Free, offline — VAT rates and format checks for 45 European countries, no account needed
  • Live validation — verify EU VAT numbers against VIES, get the registered company + audit-grade consultation number (requires a free vatnode API key)
  • Five focused tools — well-described for accurate agent tool selection
  • Pure stdio, zero hosted dependencies, runs locally via npx

Tools

ToolFreeDescription
get_country_vat_ratesStandard / reduced / super-reduced / parking rates + VAT number format for a country
list_eu_vat_ratesAll 27 EU member states (plus XI for Northern Ireland) at once
check_vat_formatOffline syntactic check of a VAT number against the country regex
list_supported_countriesAll 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.


Install

Claude Desktop

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).

Cursor

Settings → MCP → Add new server:

{
  "mcpServers": {
    "vatnode": {
      "command": "npx",
      "args": ["-y", "vatnode-mcp"],
      "env": { "VATNODE_API_KEY": "vat_live_..." }
    }
  }
}

ChatGPT (custom connectors / Apps SDK)

Configure as an stdio MCP server with the same npx -y vatnode-mcp command. See the Apps SDK docs.

Continue / Cline / other clients

Any MCP-compatible client can connect — point it at npx -y vatnode-mcp and (optionally) pass VATNODE_API_KEY via environment.


Get an API key

validate_vat_number requires a vatnode account. The platform also offers things the MCP doesn't expose:

  • Webhooks for VAT status changes (monitor a customer's VAT continuously)
  • Bulk validation
  • National-database fallback when VIES is down
  • VIES consultation numbers (audit-grade proof of validation)
  • Per-key rate limiting + dashboard analytics

Sign up free →


Example session

You: What's the VAT rate in Finland and Germany?

(Agent calls get_country_vat_rates for 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.


Configuration

Env varRequiredDefaultPurpose
VATNODE_API_KEYfor validate_vat_numberAPI key from https://vatnode.dev
VATNODE_API_URLnohttps://api.vatnode.devOverride the API base (self-hosting / staging)

Contributing

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

Releasing

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.

License

MIT

Server Config

{
  "mcpServers": {
    "vatnode": {
      "command": "npx",
      "args": [
        "-y",
        "vatnode-mcp"
      ],
      "env": {
        "VATNODE_API_KEY": "<YOUR_VATNODE_API_KEY>"
      }
    }
  }
}
Project Info
Created At
24 days ago
Updated At
6 days ago
Author Name
vatnode
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Mnemom

15 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago