Skip to main content
Glama
artisan-at-work

euinvoice-mcp

get_vat_rates

Retrieve current VAT rates for any EU/EEA country, including standard, reduced, super-reduced, and parking rates with notes.

Instructions

Get VAT rates (standard, reduced, super-reduced, parking) for an EU/EEA country. Returns current rates with notes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countryCodeYesISO 3166-1 alpha-2 country code (e.g., DE, FR, IT)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It implies a safe read lookup ('Get') and discloses that results include notes and are 'current' rates, but says nothing about error behavior for non-EU inputs, freshness/source of the rates, or rate limits. Adequate for a trivial lookup, but thin.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two compact sentences, front-loaded with the purpose and scope, followed by a brief return-value note. No filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only lookup with no output schema, the description covers purpose, geographic scope, and returned content. Minor gaps remain around behavior for invalid/non-EU country codes, but nothing essential to invoking the tool is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% so the baseline is 3, but the description adds a real constraint absent from the schema: the countryCode must be an EU/EEA country. That scoping nuance materially affects how the agent selects this tool and validates input.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Get) and resource (VAT rates) and enumerates the rate categories returned, so the agent knows exactly what data comes back. It does not, however, differentiate itself from the sibling list_vat_rates, leaving ambiguity about which of the two to pick.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use guidance, no prerequisites, and no mention of the sibling list_vat_rates or any other alternative. The agent must infer usage context entirely from the name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.