GnistAI GnistAI
Log in

VAT Rates (EU)

EU and European VAT rates by country — standard, reduced, super-reduced, and parking rates.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 6 tools tools 6 6 Finance

Data source: European Commission

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/vat-rates/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-vat-rates": {
      "url": "https://context.gnist.ai/mcp/vat-rates/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/vat-rates/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_vat_rate", "arguments": {"country_code": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/vat-rates/

6 endpoints available:

Shell
curl "https://context.gnist.ai/rest/vat-rates/get_vat_rate?country_code=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/vat-rates/get_vat_rate",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "country_code": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc vat-rates

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (6)

get_vat_rate
Get VAT rates for a specific European country.
ParameterTypeRequiredDescription
country_codestringrequiredISO alpha-2 country code (e.g. DE, FR, SE).
list_all_vat_rates
List VAT rates for all European countries.
search_vat_rates
Search VAT rates by country name.
ParameterTypeRequiredDescription
querystringrequiredCountry name to search for.
limitintegeroptional (default: 10)
get_highest_vat_rates
Get countries with the highest standard VAT rates.
ParameterTypeRequiredDescription
limitintegeroptional (default: 10)
get_lowest_vat_rates
Get countries with the lowest standard VAT rates.
ParameterTypeRequiredDescription
limitintegeroptional (default: 10)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related