Finance
Data source: European Commission
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/vat-rates/
6 endpoints available:
GET /rest/vat-rates/get_vat_rateGET /rest/vat-rates/list_all_vat_ratesGET /rest/vat-rates/search_vat_ratesGET /rest/vat-rates/get_highest_vat_ratesGET /rest/vat-rates/get_lowest_vat_ratesGET /rest/vat-rates/report_feedback
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())
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_rateGet VAT rates for a specific European country.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO alpha-2 country code (e.g. DE, FR, SE). |
list_all_vat_ratesList VAT rates for all European countries.
search_vat_ratesSearch VAT rates by country name.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Country name to search for. |
limit | integer | optional | (default: 10) |
get_highest_vat_ratesGet countries with the highest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
get_lowest_vat_ratesGet countries with the lowest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |