Data source: European Commission
https://context.gnist.ai/mcp/vat-rates/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (6)
get_vat_ratelist_all_vat_ratessearch_vat_ratesget_highest_vat_ratesget_lowest_vat_ratesreport_feedback
get_vat_rateGet VAT rates for a specific European country.
Returns standard rate, reduced rates, super-reduced rate, and parking rate where applicable.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO alpha-2 country code (e.g. DE, FR, SE). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_vat_rate",
"arguments": {
"country_code": "NO"
}
}
}list_all_vat_ratesList VAT rates for all European countries.
Returns standard and reduced rates for all EU/EEA member states plus UK and Switzerland.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_all_vat_rates",
"arguments": {}
}
}search_vat_ratesSearch VAT rates by country name.
Case-insensitive partial match on country name or code.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Country name to search for. |
limit | integer | optional | (default: 10) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_vat_rates",
"arguments": {
"query": "NO"
}
}
}get_highest_vat_ratesGet countries with the highest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_highest_vat_rates",
"arguments": {}
}
}get_lowest_vat_ratesGet countries with the lowest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_lowest_vat_rates",
"arguments": {}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/vat-rates/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_vat_rate",
"arguments": {
"country_code": "example"
}
}
},
)
print(resp.json())