eu-company-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| company_searchA | Firmen in der GLEIF-Datenbank suchen (weltweit, 2M+ Einträge). Findet Unternehmen nach Name mit LEI, Adresse, Registernummer, Rechtsform und Gründungsdatum. Perfekt für Due Diligence und KYC. Args: name: Firmenname oder Suchbegriff (z.B. "Siemens", "Deutsche Bank") country: ISO-Ländercode (z.B. "DE", "FR", "US"). Leer = weltweit. limit: Max. Ergebnisse (1-50) |
| company_by_leiA | Firma per LEI-Code abrufen (volle Details). LEI = Legal Entity Identifier, 20-stelliger Code. Gibt alle verfügbaren Daten inkl. BIC-Codes und Events. Args: lei: LEI-Code (z.B. "7LTWFZYICNSX8D621K86" für Deutsche Bank) |
| company_by_registerB | Firma per Handelsregisternummer suchen. Args: register_number: Registernummer (z.B. "HRB 30000") country: Ländercode (Standard: DE) |
| company_structureA | Konzernstruktur einer Firma abrufen (Mutter + Töchter). Zeigt die direkte Muttergesellschaft, die oberste Konzernmutter und alle direkten Tochtergesellschaften. Args: lei: LEI-Code der Firma limit: Max. Tochtergesellschaften (1-50) |
| validate_vat_numberA | EU-Umsatzsteuer-ID (USt-ID / VAT) überprüfen. Prüft ob eine USt-ID gültig ist und gibt (falls verfügbar) Firmenname und Adresse zurück. Quelle: EU VIES System. Hinweis: Deutschland gibt nie Name/Adresse zurück. Die meisten anderen EU-Länder liefern Details. Args: country_code: 2-Buchstaben Ländercode (z.B. "DE", "FR", "IT", "NL") vat_number: USt-ID Nummer ohne Länderprefix (z.B. "811128135") |
| eu_gdpA | BIP (Bruttoinlandsprodukt) für EU-Länder abrufen. Quelle: Eurostat. Werte in Millionen Euro. Args: countries: Ländercodes mit Semikolon getrennt (z.B. "DE;FR;IT") years: Jahre mit Semikolon getrennt (z.B. "2022;2023") |
| eu_unemploymentA | Arbeitslosenquote für EU-Länder (monatlich, saisonbereinigt). Args: countries: Ländercodes (z.B. "DE;FR;IT") periods: Monate im Format YYYY-MM (z.B. "2025-01;2025-06") |
| eu_inflationB | Inflationsrate (HICP) für EU-Länder. Args: countries: Ländercodes (z.B. "DE;FR") periods: Monate im Format YYYY-MM (z.B. "2025-01;2025-06") |
| eu_business_demographyB | Unternehmensdemografie: Gründungen, Schließungen, aktive Firmen. Zeigt wie viele Unternehmen gegründet/geschlossen wurden. Quelle: Eurostat. Args: countries: Ländercodes (z.B. "DE;FR;IT") year: Jahr (z.B. "2021") |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool has a clearly distinct purpose: four different company lookup methods (by LEI, register number, name search, VAT validation), one corporate structure tool, and four distinct EU macroeconomic indicators (GDP, inflation, unemployment, business demography). No functional overlap exists between the identifier-based lookups or the economic data tools.
While consistently using snake_case, the toolset mixes multiple naming conventions: company lookup tools use 'company_by_*' for two tools but 'company_search' and 'company_structure' for others, while 'validate_vat_number' breaks the pattern entirely with verb-first syntax. The EU economic tools consistently use the 'eu_' prefix, but the overall set lacks a unified verb-noun or noun-first convention.
The nine tools represent a well-scoped balance between company identification capabilities (five tools covering major identifiers) and EU economic context (four tools for key indicators). Each tool addresses a specific use case without redundancy, making the count ideal for an EU business intelligence server focused on lookup and macro data.
The surface covers primary company identification methods (LEI, VAT, register number, name search) and essential EU economic indicators, but minor integration gaps exist between tools—for example, VAT validation does not explicitly return LEI codes needed for structure lookups, requiring agents to chain name-based searches. Additional company lifecycle data like officer listings or historical financials are absent but not critical for the core lookup purpose.