Skip to main content
Glama

Server Details

EU business registry lookup via GLEIF/LEI & national registries — cross-border due diligence & KYC.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
martinhavel/cz-agents-mcp
GitHub Stars
2
Server Listing
cz-agents-mcp

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: get by national ID, lookup by VAT, search by name. No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case (get_company, lookup_company_by_vat, search_company).

Tool Count4/5

With 3 tools, the set is minimal but covers the core operations for the stated purpose of looking up European company data. Slightly thin but not insufficient.

Completeness3/5

Covers lookup by ID, VAT, and name, but lacks support for Czech companies and has partial coverage for some countries (e.g., NL/IT/AT/ES only GLEIF/LEI in search). Not a complete CRUD surface, but reasonable for a read-only registry lookup server.

Available Tools

3 tools
get_companyA
Read-only
Inspect

Get a non-Czech company by national ID and country code. Supported: gb (CRN), sk (IČO), pl (KRS number), nl/it/at/es (VAT via VIES), de (LEI), fr (SIREN), no (organization number), dk (CVR number).

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesNational company ID, e.g. UK Companies House CRN "14356670".
countryYesISO 3166-1 alpha-2 country code, e.g. "gb".
Behavior3/5

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

Annotations already declare readOnly and openWorld hints. Description adds context on supported ID formats, but does not disclose other behavioral traits like error handling or rate limits. Adequate but not exceptional.

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?

Single clear sentence followed by a compact list. No fluff, immediately front-loaded with purpose.

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?

Adequate for a simple read tool with two well-described parameters. No output schema, but description covers input scenarios. Lacks details on return format or failure cases.

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 covers both parameters with descriptions; the description enhances by linking country codes to specific ID types (e.g., 'gb (CRN)'), adding real-world meaning beyond the schema's generic descriptions.

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

Purpose5/5

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

Description clearly states the tool retrieves a non-Czech company by national ID and country code, with specific supported country-ID mappings. This distinguishes it from siblings like lookup_company_by_vat (VAT-only) and search_company (general search).

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

Usage Guidelines4/5

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

Lists supported countries and their ID types, guiding the agent on when to use. No explicit when-not-to-use or alternatives, but the scope is well-defined.

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

lookup_company_by_vatA
Read-only
Inspect

Free VIES VAT lookup. Returns VAT validity plus name/address when the member state discloses them; some countries such as ES/DE may return only validity.

ParametersJSON Schema
NameRequiredDescriptionDefault
vatYesEU VAT number including ISO-2 country prefix, e.g. "NL123456789B01".
Behavior4/5

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

Annotations already convey read-only and open-world hints. The description adds valuable behavioral details: it's free, and some countries (ES/DE) return only validity, not full details. This adds context beyond annotations.

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?

The description is a single concise sentence that front-loads the core purpose and caveats. No unnecessary words.

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 simple lookup with one parameter and no output schema, the description adequately covers what to expect: validity and optional details. Country-specific behavior is noted, but no mention of error handling or response format.

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

Parameters3/5

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

With 100% schema description coverage, the parameter vat is already well-documented in the schema (e.g., 'EU VAT number including ISO-2 country prefix'). The description does not add further semantic value.

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

Purpose5/5

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

The description clearly states the tool's purpose: 'Free VIES VAT lookup. Returns VAT validity plus name/address...' It distinguishes from siblings like get_company and search_company by specifying it's VAT-specific and mentions country-specific behavior.

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

Usage Guidelines3/5

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

The description notes it's free but does not explicitly state when to use this over siblings or when not to. It provides some context (country limitations) but lacks alternative recommendations.

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

search_companyA
Read-only
Inspect

Search non-Czech business registries by company name. Supported: GB (Companies House), SK (ORSR/RPO), PL (KRS), NL/IT/AT/ES (GLEIF/LEI only; exact VAT data via lookup_company_by_vat or get_company with VAT), DE (GLEIF/LEI), FR (SIRENE), NO (BRREG), DK (CVR).

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesCompany name or partial company name.
limitNoMax results per search, default 10, max 20.
countryNoISO 3166-1 alpha-2 country code, e.g. "gb".
Behavior5/5

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

Annotations indicate readOnlyHint (safe query) and openWorldHint (results vary). The description adds context about country-specific limitations (e.g., NL/IT/AT/ES only GLEIF/LEI data), which is beyond annotations and helps the agent understand behavior.

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?

The description is a single sentence followed by a concise list of supported countries. It is front-loaded with the tool's purpose and efficiently conveys all essential information without waste.

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

Completeness5/5

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

Given no output schema and straightforward search functionality, the description covers supported registries and limitations. It is complete for the tool's complexity and context.

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

Parameters5/5

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

The input schema has 100% description coverage with clear meanings for name, limit, and country. The description adds value by specifying which countries are supported and data sources, enhancing schema information.

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

Purpose5/5

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

The description clearly states the tool searches non-Czech business registries by company name, lists supported countries, and distinguishes from sibling tools like lookup_company_by_vat and get_company for exact VAT data.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool vs alternatives: for supported countries, and notes that exact VAT data should use other tools. It also implies not to use for Czech registries.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.