Data source: Curated dataset (government tax authorities, 2024 rates)
https://context.gnist.ai/mcp/income-tax/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (4)
get_tax_infoGet income tax brackets and rates for a country.
Returns tax brackets, standard deduction, currency, tax year, and notes about the tax system.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO 3166-1 alpha-2 country code (e.g. US, GB, DE, NO). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_tax_info",
"arguments": {
"country_code": "NO"
}
}
}calculate_income_taxCalculate progressive income tax for a given country and annual income.
Returns total tax, effective rate, marginal rate, and a per-bracket breakdown showing
how much income falls in each bracket and how much tax is owed per bracket.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO 3166-1 alpha-2 country code (e.g. US, GB, DE, NO). |
income | number | required | Gross annual income in the country's local currency. |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "calculate_income_tax",
"arguments": {
"country_code": "NO",
"income": 1.0
}
}
}list_tax_countriesList all countries with available income tax bracket data.
Returns country codes, names, and currencies for all supported countries.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_tax_countries",
"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/income-tax/" \
-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_tax_info", "arguments": {"country_code": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/income-tax/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_tax_info",
"arguments": {
"country_code": "example"
}
}
},
)
print(resp.json())