Handelsregister
Server Details
German Handelsregister + Austrian Firmenbuch for AI agents: master data, financials & ratios.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- jkbngb/agentic-firmenbuch
- GitHub Stars
- 0
- Server Listing
- agentic-firmenbuch
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.9/5 across 11 of 11 tools scored.
Each tool has a distinct primary purpose, with clear pointers to the right tool for the job. The main possible confusion is between describe_fields/get_coverage and search_companies/search_person, but the descriptions actively disambiguate those boundaries.
All tool names follow a consistent lowercase snake_case verb_noun pattern: describe_fields, export_companies_csv, get_company_details, list_events, search_companies. Even ping fits the predictable style as a simple liveness verb.
Eleven tools is well-scoped for a unified company-register facade. Each tool covers a distinct part of the surface: schema, coverage, search, detail, persons, peers, events, statistics, export, and diagnostics.
The read-only domain is covered thoroughly: lookup, detail, person search, similarity, event feeds, aggregate stats, and export all exist. Unsupported country-specific features are handled with notices and coverage metadata rather than missing tooling.
Available Tools
11 toolsdescribe_fieldsDescribe fields & capabilitiesARead-onlyIdempotentInspect
Schema self-description: the unified id scheme, which filters exist, which countries support which capability, and each country's own field catalog. Read-only.
Parameters:
- country (optional, default "all"): "AT" | "DE" | "all" - whose field catalogs to
include.
Returns {id_scheme, capabilities, countries, countries_unavailable}. ``id_scheme``
documents the unified company_id ("AT:123456a", "DE:D2601_HRB135076"; bare national
ids are accepted, responses always return the prefixed form). ``capabilities`` is
the per-country capability matrix including each country's supported unified
filters - a filter absent for a country is applied to the others and reported in a
notice, never silently dropped. ``countries`` carries each backend's own
describe_fields payload (code tables, null rules, tool tiers). Call once up front
when unsure which filter or tool to use; it returns no company data itself.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | all |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds substantial behavioral context not available in the annotations: it explains id normalization from bare national ids to prefixed form, that unsupported filters are reported in a notice rather than silently dropped, and that the tool returns no company data. These are meaningful runtime behaviors beyond the readOnly and idempotent hints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than typical but well organized with clear sections. It front-loads the core identity and read-only note, then elaborates on parameters and return structure. Slightly dense, but every major point earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one optional parameter and an existing output schema, the description fully covers behavior, return shape, id normalization, filter handling, and guidance on when to call it. An agent has enough to invoke it correctly without further web searching.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must fully compensate. It does: it documents the country parameter's optionality, default value, allowed values ('AT' | 'DE' | 'all'), and exactly what each selection controls. This adds all meaning the bare schema lacks.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the tool as a schema self-description resource and explicitly enumerates what it covers: unified id scheme, available filters, per-country capabilities, and per-country field catalogs. This is a specific verb-plus-resource statement that clearly distinguishes it from the data-returning sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives a clear usage directive: call once up front when unsure which filter or tool to use, and explicitly notes that it returns no company data. However, it does not name specific alternative tools or spell out when to prefer them, so it falls short of a fully explicit routing recommendation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
export_companies_csvExport companies to CSV (AT + DE)ARead-onlyInspect
Export a matched company set as downloadable CSV files (lead lists). Read-only over company data; each call writes new short-lived export files (auto-deleted after ~1 day).
Parameters:
- filters (optional): EXACTLY the same unified filters as search_companies.
- sort (optional): same as search_companies (applies where the country supports
the field).
- max_rows (optional, default 1000, max 10000): per-country row ceiling.
- country (optional, default "all"): "AT" | "DE" | "all".
Returns {countries: {<code>: {download_url, rows, columns, ...}}, notices}. ONE
CSV per country (semicolon-separated, UTF-8 BOM, Excel-ready): each register
exports its own column set - DE files have no financial columns yet (blank would
wrongly read as zero). Download links are signed and valid ~60 minutes. A filter a
country does not support excludes that country with a notice, like
search_companies. For browsing/ranking on screen use search_companies instead.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | ||
| country | No | all | |
| filters | No | ||
| max_rows | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond the annotations: it discloses that each call writes short-lived export files, auto-deletes them, provides signed download links valid for ~60 minutes, produces one CSV per country, and notes that DE files lack financial columns. It also explains the semantics only during prep instead of adding a misleading read_only hint. This is robust behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Despite being detailed, the description is well-structured: it opens with the clear purpose, labels its main operational restrictions, lists parameters briefly, then describes return structure and usage boundaries. Every sentence adds meaningful information about behavior or an edge case; there is no padding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of creating country-specific CSV exports with transient files, the description covers the full operational surface: output shape, row limit, defaults, file format, and per-country column differences. The annotations and structured schema add further context, making the description complete enough for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description needs to be the sole parameter explainer. It succeeds for all four parameters: filters (exact same as search_companies), sort, max_rows (default 1000/max), and country (AT|DE|all). It does not enumerate the filter fields here, instead referring to a sibling schema, but that is a reasonable pointer for a large unified filter object.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Export') with a well-defined resource ('matched company set' as CSV files) and explicitly names the AT + DE scope and the downloadable CSV output. It also distinguishes itself from screen-browsing search tools, so an agent can tell this is the export/lead-list tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'For browsing/ranking on screen use search_companies instead', which is a clear alternative. It also clarifies that filters and sort are intentionally shared with search_companies, so use of this tool is well-routed. It could go further by naming other sibling conditions, but the guidance is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_peersFind peer companies (incl. cross-border)ARead-onlyIdempotentInspect
Companies most similar to a given one - optionally ACROSS THE BORDER. Read-only.
Parameters:
- company_id (required): "AT:{fnr}" or "DE:{court}_{type}{number}" (bare national
ids accepted), from a search card.
- n (optional, default 10): how many peers per country.
- cross_border (optional, default false): when true, additionally returns
``peers_abroad`` - the companies in the OTHER country whose registered purpose
is semantically closest to the reference company's activity text.
Returns {company_id, country, peers_home, home_envelope, peers_abroad?, notes}.
``peers_home`` uses the home register's own peer logic (AT: same size class,
same industry preferred, nearest by Bilanzsumme; DE: semantic-first by registered
purpose). ``peers_abroad`` is a MEANING-based match, not a size or financial
benchmark - the honest cross-border comparison given the countries' different
data depth (see notes). Empty peers_home means the id is unknown or the company
lacks the data its register ranks by. For a strict filtered list use
search_companies; for aggregates use the country server's cohort tools.
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | ||
| company_id | Yes | ||
| cross_border | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the read-only/idempotent/destructive annotations, the description richly explains behavioral semantics: empty peers_home indicates an unknown id or missing ranking data, peers_abroad is a meaning-based rather than financial match, and differing data depth between countries is acknowledged. This goes far beyond what annotations alone convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured: purpose and read-only status are front-loaded, then parameters, then return semantics, then routing to alternatives. Although detailed, every sentence adds necessary information rather than padding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given three parameters, 0% schema description coverage, and the tool's nuanced cross-border behavior, the description covers all needed information: input format, response envelope, empty-result meaning, and when another tool fits. The agent can make a correct invocation decision without further context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the parameter section carries full weight. It defines the company_id format with examples, notes that bare national ids are accepted, clarifies n is per country, and explains cross_border's effect on the response. This fully compensates for the schema's lack of parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific operation and resource: finding companies most similar to a given one, with optional cross-border peers. It distinguishes itself from siblings by describing what it returns and explicitly pointing to search_companies as the strict-filter alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explains when to enable cross_border, clarifies that peers_home uses each register's own peer logic, and routes non-peer use cases elsewhere: 'For a strict filtered list use search_companies; for aggregates use the country server's cohort tools.' This is explicit guidance an agent can act on.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_detailsCompany profile (AT + DE)ARead-onlyIdempotentInspect
Full profile for ONE company, routed by its unified id. Read-only.
Parameters:
- company_id (required): "AT:{fnr}" (e.g. "AT:123456a") or
"DE:{court}_{type}{number}" (e.g. "DE:D2601_HRB135076"); bare national ids are
accepted too. Take it from a search card's ``company_id``.
- max_signatories (optional, DE only): cap on the served officer list (DE default
15, 0 = all); ignored for AT.
Returns the country backend's full profile plus ``country`` and the prefixed
``company_id``. AT: identity, location, per-year Bilanz + GuV, ratios, growth,
filings, management, events. DE: identity, seat, Stammkapital, Gegenstand, WZ/NACE
classification, managing directors (birth year only) - German financial statements
are not covered yet, so never report them as zero or missing. Unknown id ->
{error: not_found}. Use search_companies first when you only have a name.
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | ||
| max_signatories | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the operation read-only, idempotent, and non-destructive, and the description reinforces this. It additionally discloses important runtime behaviors: unknown ids produce {error: not_found}, DE financial statements must not be reported as zero/missing, and max_signatories behavior differs by country.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but each sentence contributes necessary operational knowledge. Purpose is front-loaded, parameter details are organized, and country-specific differences are separated clearly, making the long text easy to navigate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists, the description covers everything an agent needs to select and invoke the tool correctly: input derivation, path routing, parameter semantics, per-country return content, known data gaps, and error behavior. Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema description coverage, the description fully documents both parameters. It gives exact formats and examples for company_id, explains how to obtain it, and precisely defines max_signatories defaults, valid values, country restrictions, and ignored cases for AT.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: returns the full profile for exactly ONE company, routed by its unified company_id. It also differentiates itself from siblings by explicitly pointing to search_companies for the case where only a name is known, making the tool's role unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit direction: use search_companies first when only a name is available, and take company_id from a search card. It also details country-specific behavior and warns that German financial statements are not covered, giving an agent clear guidance on when this tool is and is not appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_coverageDataset coverage per countryARead-onlyIdempotentInspect
Dataset coverage and the capability matrix, per country. Read-only. CALL THIS FIRST before concluding that something does not exist in a country.
Parameters:
- country (optional, default "all"): "AT" | "DE" | "all" - which countries to include.
Returns {countries: {<code>: <that backend's coverage payload>}, capabilities,
countries_unavailable}. Each country section is the country backend's own coverage
dashboard (AT: parsed-financials counts by format/status; DE: per-Bundesland counts
+ fill rates - the DE backfill is still running, so a low count means "not crawled
yet", not "does not exist"). ``capabilities`` is the machine-readable matrix of what
each country supports (financials, documents, events windows, filters); a country
that cannot be reached appears under ``countries_unavailable`` with the error
instead of failing the whole call. For valid filter values use describe_fields;
for per-company data use search_companies.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | all |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, but the description adds valuable behavioral context: it explains countries_unavailable behavior, the backfill caveat for DE counts, and how not to interpret low counts. This clearly exceeds the annotation baseline and helps the agent avoid incorrect conclusions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well-structured: a one-line usage cue, a compact parameter section, and a return-shape explanation. Every sentence adds necessary information, and the critical 'call first' guidance is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the single optional parameter, the return structure, error handling for unreachable countries, and the meaning of incomplete data. Given the output schema and sibling context already provided, nothing necessary for safe and correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description is the only source of parameter meaning. It explains the country parameter is optional, defaults to "all", and defines the allowed values "AT", "DE", and "all". It also clarifies how the parameter affects the returned payload.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns dataset coverage and a capability matrix per country, which is a specific resource and purpose rather than a tautology. It also distinguishes itself from sibling tools by explicitly routing to describe_fields for filter values and search_companies for per-company data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit directive: 'CALL THIS FIRST before concluding that something does not exist in a country.' It also names alternatives and the conditions under which they should be used, making the selection decision clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_statsRegister change statisticsARead-onlyIdempotentInspect
Aggregate counts of register changes by type and region, per country. Read-only.
Parameters (all optional): since / until (default last 30 days); bundesland;
nace_section; nace_division (AT); legal_form (AT); country ("AT" | "DE" | "all").
Returns {countries, per_country, windows, notices}, each country's block being its
own {total, by_type, by_bundesland}. Only AT exposes event statistics today; DE is
reported in notices as not yet available (never as zero). For the individual
changes use list_events.
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | ||
| until | No | ||
| country | No | all | |
| bundesland | No | ||
| legal_form | No | ||
| nace_section | No | ||
| nace_division | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Read-only is already covered by annotations, but the description adds important non-obvious behavior: default date window, availability differences by country, the 'never as zero' rule for DE, and the top-level return shape. It exceeds annotation coverage without contradicting it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four dense sentences, each adding value: the function's result, the parameter list, the availability caveat, and the sibling route. It is front-loaded with the primary purpose and avoids fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter read-only tool with an output schema, this description covers parameter selection, default behavior, availability limitations and where to go for individual events. Nothing about selecting or invoking the tool correctly seems missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameter descriptions, but the description compensates by listing all parameters, marking them optional, giving the last-30-day default, restricting nace_division and legal_form to AT, and enumerating country values. It falls slightly short only because it does not spell out the expected string format for dates or explain the NACE/bundesland concepts.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action and resource: aggregate counts of register changes by type and region per country. It also distinguishes itself from list_events, which is for individual changes, so an agent can select it correctly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly routes the agent to list_events for individual changes and makes the current availability clear: only AT exposes event statistics, while DE reports 'not yet available' instead of zero. This gives both positive and negative usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_my_usageMy API usageARead-onlyIdempotentInspect
Your own API-key usage across both registers: call count and weighted compute-units, per tool. Read-only.
Parameters:
- window (optional, default "today"): "today" | "yesterday" | "month_to_date" |
"last_30_days" | "all".
Returns only the calling key's own usage (totals + per-tool breakdown) for that
window - never another user's data and never the email behind the key. One meter
spans AT and DE, since the facade is the single billing point. Use it to check your
consumption against the plan's rate limits.
| Name | Required | Description | Default |
|---|---|---|---|
| window | No | today |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the existing readOnly/idempotent/destructive annotations, the description adds important behavioral context: it only returns the calling key's own usage, never another user's data, never the email behind the key, and it explains that a single meter spans AT and DE as the billing point. This provides meaningful transparency about limits and privacy.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well structured and front-loaded: it opens with a clear summary and then provides parameter details and return-scope specifics. It is slightly repetitive around 'own usage' and 'calling key's own usage,' but every section earns its place and nothing is irrelevant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With a single optional parameter, existing safety annotations, and an output schema present, the description is complete for making a correct call. It states the call filter, the result scope, the billing-meter behavior, and a practical use case, leaving no important operational gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only the parameter name, type, and default, with no descriptions. The tool description compensates fully by documenting the optional window parameter, its default value of 'today', and every valid value: today, yesterday, month_to_date, last_30_days, and all.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states precisely what the tool does: obtain the calling API key's own usage, including call count and weighted compute-units, per tool, and it clarifies the 'both registers' scope. It also distinguishes the tool from siblings by emphasizing 'your own' usage and explicitly excluding other users' data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a concrete use case: 'Use it to check your consumption against the plan's rate limits.' It is clear about context but does not explicitly name alternatives or provide when-not-to-use guidance, which keeps it slightly below the top score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_eventsRegister change feed (AT + DE)ARead-onlyIdempotentInspect
Cross-company, cross-country feed of register CHANGES, newest first - the market-watch / deal-sourcing surface. Read-only.
Parameters (all optional, AND-combined):
- types: any of the SUPERSET enum - founding, new_registration, deletion,
deletion_announced, name_change, seat_change, legal_form_change, capital_change,
management_change, management_join, management_leave, gegenstand_change, merger,
split, conversion, contribution, consolidation, division,
shareholder_capital_change. Each country's feed carries a SUBSET; a type not in
a country's feed is skipped for that country (reported in notices), and a
country with none of the requested types is excluded. Note new_registration (DE,
a discovery date) and founding (AT, a register event) are distinct - see
describe_fields.
- since / until: ISO dates. Default window: last 30 days.
- bundesland: full state name.
- nace_section (A-U, both countries); nace_division (AT only); legal_form (AT only).
- company_ids: prefixed watchlist; AT filters the whole list, DE filters ONE id at
a time (pass a single DE id, or query DE separately).
- country: "AT" | "DE" | "all" (default). page (1), page_size (25).
Returns {countries, events, per_country, windows, notices}. ``events`` are merged
newest-first, each with ``country`` and a prefixed ``company_id``; AT events add
before/after values only for the detailed types. ``windows`` states each country's
data availability (AT: detailed >= 2026-07-01, coarse >= ~2020; DE: >= 2026-07-30)
so an empty stretch is never mistaken for missing data. For aggregate counts use
get_event_stats; for one company's history use get_company_details.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| since | No | ||
| types | No | ||
| until | No | ||
| country | No | all | |
| page_size | No | ||
| bundesland | No | ||
| legal_form | No | ||
| company_ids | No | ||
| nace_section | No | ||
| nace_division | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint, and the description substantially deepens behavioral context: it explains subset type skipping, per-country feeds, data availability windows so empty stretches are not misread, prefixed company_ids, and before/after values only for detailed AT types. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-organized with a leading purpose sentence, a bulleted parameter list, and a compact return-value explanation. Every sentence or bullet adds essential operational detail without redundancy, making the length justified given the tool's API complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description still provides the important context that can't be inferred from schema: country-specific availability windows, AT/DE type distinctions, company_id constraints, and routing to sibling tools. It leaves the agent a fully operational understanding of when and how to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description compensates fully by documenting every parameter, including the full types superset enum, ISO date defaults, country-specific bounds for nace_division/legal_form, the company_ids AT/DE difference, and pagination defaults. It also states that all parameters are optional and AND-combined.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists cross-company, cross-country register changes, newest first, and labels it as the market-watch/deal-sourcing surface. This goes beyond the title by specifying scope, sorting, and data source, and it is immediately distinguishable from sibling tools that retrieve company details or aggregate stats.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly directs users to alternatives: 'For aggregate counts use get_event_stats; for one company's history use get_company_details.' It also explains parameter AND-combination semantics and country-specific type behavior, helping the agent decide when and how to call it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pingLiveness / server infoARead-onlyIdempotentInspect
Liveness probe: confirms the unified register server is up. Read-only.
Parameters:
- check_backends (optional, default false): when true, additionally performs a
cheap connection handshake against every configured country backend and reports
per-country reachability ("ok" / "unreachable").
Returns {status, server, countries, provenance} - countries maps each configured
country code to its backend product name and, with check_backends, its live
reachability. Use get_coverage for data completeness; this tool only says whether
the service is up.
| Name | Required | Description | Default |
|---|---|---|---|
| check_backends | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive. The description adds transparency beyond annotations by explaining the optional 'cheap connection handshake' against every configured backend and how per-country reachability is reported, plus the high-level response shape.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured and info-dense: a one-line purpose, a parameter breakdown, and a return summary. It loses a point for a little redundancy: 'confirms the server is up' and 'only says whether the server is up' say similar things.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple liveness tool with one optional parameter, an output schema, and strong annotations, the description fully covers what the agent needs: purpose, parameter semantics, return contents, and how it differs from the relevant sibling. Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description carries the full parameter documentation burden. It fully explains check_backends: its default(false), optional nature, behavior when true, and the per-country reachability information it produces.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Liveness probe' and says it 'confirms the unified register server is up,' giving a specific verb and resource. It also explicitly distinguishes itself from get_coverage by stating 'this tool only says whether the server is up,' which prevents confusion with a sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It names the alternative get_opcoverage for data completeness and clearly states the boundary of this tool. The optional check_backends parameter is also described with its effect, telling the agent when it is appropriate to invoke the deeper behavior.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_companiesSearch companies (AT + DE)ARead-onlyIdempotentInspect
Find companies across the Austrian Firmenbuch and the German Handelsregister - START HERE for any company lookup. Read-only.
Parameters:
- filters (optional): every field optional, AND-combined. Shared core (both
countries): name (substring), query (MEANING-based hybrid search over the
registered purpose - both countries), status (active|inactive|all, default all),
legal_form, bundesland, city, postal_code (prefix; AT PLZ 4-digit, DE 5-digit),
near {place | postal_code, radius_km} (radius search, matches from EVERY queried
country within the radius - works across the border), nace_section (A-U; OENACE
== WZ == NACE Rev. 2, so one industry code filters both countries), gegenstand
(literal substring over the registered activity text), manager_name (person
search), company_ids (prefixed watchlist, e.g. ["AT:123456a",
"DE:D2601_HRB135076"], max 100). AT-only today (see describe_fields
capabilities): nace_division/group, size_gkl, bilanzsumme/revenue/equity_ratio/
employees ranges, growth_profile, has_guv(_latest), last_filing_year_min,
founded_year_min/max, gf_age_min, event_signal/since/until. DE-only:
registergericht, capital_min/max (Stammkapital). Country aliases
(geschaeftszweig, oenace_*, wz_section, fnrs, stammkapital_*) are accepted.
- sort (optional): {field, descending}. AT fields: bilanzsumme (default), revenue,
equity_ratio, employees, last_filing_year, revenue_growth_1y/3y/5y, distance.
DE fields: name, register_nummer, capital. A country that cannot sort by the
requested field returns its default order (reported in notices).
- page (default 1), page_size (default 25).
- after (optional): KEYSET paging for bulk extraction - single country only
(cursors are per register). Pass "" to start, then the country's next_after
from per_country.
- exact_count (optional, default false): force exact totals (costs a full scan).
- country (optional, default "all"): "AT" | "DE" | "all".
Returns {countries, total: {AT, DE, combined}, results, per_country, notices}.
``results`` are compact cards, each with ``country`` and the prefixed
``company_id``; with country="all" the list is AT block then DE block - each
country keeps its own ranking (no fake interleave). ``per_country`` carries each
register's own envelope (exact totals or lower bounds, applied_filters,
relaxations on zero hits, query_mode, next_after). A filter one country does not
support excludes that country and says so in ``notices`` - it is never silently
dropped; an unreachable backend appears in ``countries_unavailable`` instead of
failing the call. Never report a German company's financials as zero - DE
financial data is not covered yet (see get_coverage).
For one company's full profile use get_company_details; for a downloadable list
use export_companies_csv; for dataset completeness use get_coverage.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| sort | No | ||
| after | No | ||
| country | No | all | |
| filters | No | ||
| page_size | No | ||
| exact_count | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Behavioral details go well beyond the annotations: a filter unsupported in one country excludes that country and appears in 'notices' rather than being silently dropped; unreachable backends are reported via 'countries_unavailable'; and German financials must not be reported as zero due to missing DE coverage. These are exactly the hidden behaviors an agent needs to avoid incorrect results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description fully front-loaded with purpose and then structured into clear labeled blocks: purpose, parameters, sort, paging, return envelope, usage warnings, and alternative tools. Although very long, every sentence covers a distinct and useful requirement for a high-complexity, multi-country search API, and there is no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a tool with this huge parameter count and cross-country behavior. It covers not only parameters but also response shape, country block behavior, error/surprise behavior, sorting defaults, and a clear reference to get_coverage for data completeness. Nothing needed to invoke the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates. It explains the semantics of filters (AND-combined, substring vs. meaning-based), shared vs. country-specific fields, country aliases, sort fields per country, keyset paging rules ('after' with cursors), exact_count behavior, and the country parameter. This goes far beyond the raw schema and is essential for correct calls.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action and resource: 'Find companies across the Austrian Firmenbuch and the German Handelsregister' and explicitly brands it as 'START HERE for any company lookup.' It also differentiates from siblings by naming get_company_details, export_companies_csv, and get_coverage for other use cases, which removes any ambiguity about the tool's role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says to use this tool first for any company lookup and then directs to alternatives: get_company_details for full profiles, export_companies_csv for downloads, and get_coverage for data completeness. This gives the agent clear conditions for when to use this tool versus siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_personSearch a person across registersARead-onlyIdempotentInspect
Find every company a person runs or represents - across BOTH registers in one call (cross-border person search). Read-only.
Parameters:
- name (required): person name substring, case-insensitive, e.g. "Mustermann".
- country (optional, default "all"): "AT" | "DE" | "all".
- page_size (optional, default 25): results per country.
- status (optional, default "all"): "active" | "inactive" | "all".
Returns the merged search_companies envelope ({countries, results, per_country,
notices}) plus ``person_query``; every result card carries ``country``,
``company_id`` and the matched manager. AT matches the primary managing director,
DE matches all managing directors AND registered signatories. IMPORTANT: matching
is by name and the registers publish birth YEAR only - a shared name across
companies or countries does not prove the same person (the notice says so; use
birth years and context to corroborate). For general company search use
search_companies with other filters; manager_name can be combined there too.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| status | No | all | |
| country | No | all | |
| page_size | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly, idempotent, non-destructive), the description discloses return-envelope shape, per-country matching semantics (AT matches only the primary managing director; DE matches all MDs and signatories), and the critical caveat that name-based matching with only birth-year published does not prove a single person across companies/countries. This contextual warning directly prevents agents from drawing false conclusions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The core purpose is front-loaded and the parameter block is organized, with every sentence earning its place. Minor deducts: it repeats defaults already present in the schema as data, and the phrase '(the notice says so)' is a slightly noisy aside in an otherwise lean definition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The definition is complete for a 4-parameter search tool: it covers required input, output envelope and per-card fields, per-country behavioral differences, the identity-matching hazard, and sibling-tool routing. With an output schema present, nothing an agent needs to invoke this correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the full burden of param semantics. It covers every one of the 4 parameters with defaults, allowed values (AT/DE/all; active/inactive/all), format (substring, case-insensitive, e.g. 'Mustermann'), and behavior implications (page_size = results per country). It exceeds what the bare JSON schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Find every company a person runs or represents - across BOTH registers in one call (cross-border person search)'. It names the sibling it is not ('For general company search use search_companies'), so an agent can distinguish it from search_companies without opening the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly routes to an alternative: 'For general company search use search_companies with other filters; manager_name can be combined there too.' It also clarifies when this tool applies (person-centric cross-register search) and sets expectations with the AT vs DE matching differences, leaving no ambiguity about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables AI agents to search and retrieve structured data from the German Commercial Register, including company details, filed documents, and shareholder lists.7Apache 2.0
- AlicenseAqualityCmaintenanceStructured business intelligence for AI agents. 5.5M verified entities across 34 countries, 40.3M BORME mercantile acts, EU VAT validation, GLEIF, healthcare registries. 20 tools.61MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to access official European business data across 15 EU countries, including company lookups, VAT validation, sanctions screening, and KYB reports.7,8131MIT
- FlicenseNot gradedqualityCmaintenanceThe most comprehensive signal intelligence on Swiss businesses — 800K+ companies with people, FINMA/SRO regulatory data, building permits, procurement tenders, and AI-enriched profiles from the official commercial register.
Your Connectors
Sign in to create a connector for this server.