Skip to main content
Glama
linimeanie

Eurostat TAM MCP server

by linimeanie

Eurostat TAM MCP server

An MCP server that pulls enterprise counts by NACE Rev.2 activity and size class from Eurostat (dataset sbs_sc_ovw) and buckets them to match the DTM TAM model's columns:

Sheet column

What this server returns

SMEs

sme_count — enterprises with 1–249 employees (optionally excl. micro 0–9)

Corp: Mid-cap (250–4,999)

corp_250plus_countall 250+ firms*

* Eurostat's top size band is 250+ with no 5,000 split, so use ORBIS/ONS to separate Mid-cap from Large downstream.

What this does NOT cover (by design — the model sources these elsewhere)

  • Startups / Scaleups → Dealroom / Harmonic (venture-backed, € raised)

  • Corp Large (5,000+) → ORBIS / UK ONS

  • United Kingdom → ORBIS / ONS (UK left Eurostat after Brexit)

Default geography is EU27 + Norway + Switzerland, summed (EU27 via Eurostat's pre-aggregated EU27_2020 geo, so one call covers all 27).

Tools

get_enterprise_counts(nace_code, geo?, year?, exclude_micro?)

One NACE code → SME and 250+ counts. Example: get_enterprise_counts("C27").

get_segment_counts(nace_codes, geo?, year?, exclude_micro?)

A list of codes for one value-chain segment → per-code results plus a summed segment total. Example for "Equipment Suppliers & OEMs": get_segment_counts(["C27", "C28"]).

fill_tam_sheet(input_path, output_path?, dry_run=True, geo?, year?, exclude_micro?)

Reads NACE codes straight from the Company Counts by Segment sheet, pulls counts for every segment, and writes the SMEs (col F) and Corp Mid-cap 250+ (col G) cells. Run with dry_run=True first to audit the per-row parse, then dry_run=False to save (defaults to <input>_FILLED.xlsx — never overwrites the original unless you pass the same path).

Only yellow input cells are written; blue subtotals, the grey public-sector row, and demand-side rows are left untouched. Subtotal/Low/High formulas and cell formatting are preserved.

Related MCP server: eurostat-mcp

A critical data caveat: Eurostat has no 4-digit NACE detail

sbs_sc_ovw only goes down to division (C27) and group (C279) — there is no class-level data (C26.30, D35.11, …). The CMO's sheet is mostly class codes, so every code is resolved down to the nearest level that exists:

class → group → division → section

Each row reports which codes it used and a coarsened list flagging where it fell back to a whole division (e.g. J63 = all information services). Those numbers are upper bounds for the intended class — refine with ORBIS if needed.

NACE sub-classes use the dotted form in the sheet, e.g. "C26.30", "D35.11".

Setup

cd /Users/lini/Documents/Claude/eurostat-mcp
uv venv --python 3.12
uv pip install "mcp[cli]"

Test the live logic without the MCP layer:

uv run python -c "import server, json; print(json.dumps(server.get_enterprise_counts('C27'), indent=2))"

Register it with Claude Code

Copy the block in .mcp.json into your Claude Code MCP config, or from any project run:

claude mcp add eurostat-tam -- uv run --directory /Users/lini/Documents/Claude/eurostat-mcp server.py

Then in a Claude Code session you can just ask:

"Use eurostat-tam to pull C27+C28 for the Equipment Suppliers segment, exclude micro."

Notes & caveats

  • Summing NACE codes can double-count a firm that reports under multiple activities. De-dup per the sheet's classification waterfall before trusting totals.

  • Subtract venture-backed firms (counted as startups/scaleups) from the SME/Corp pulls so each company lands in exactly one bucket.

  • Latest year auto-resolves (currently 2024) unless you pass year.

Available Tools

5 tools
fill_tam_sheetA

Read NACE codes out of the TAM workbook's "Company Counts by Segment" sheet, pull Eurostat counts for every segment, and write the SMEs (col F) and Corp Mid-cap 250+ (col G) cells.

Only yellow input cells on segment rows are written; blue subtotals, the grey public-sector row, and demand-side rows are left untouched. Class-level NACE codes (which Eurostat lacks) are resolved down to the nearest available group/division and flagged per row under "coarsened".

Args: input_path: path to the .xlsx (e.g. the TAM_Model_with_NAICS.xlsx). output_path: where to save. Defaults to "_FILLED.xlsx". Pass the same path as input ONLY if you intend to overwrite the original. dry_run: if True (default), nothing is written — returns the full plan (per-row resolved codes, levels, and the SME/250+ it WOULD write) so you can audit before committing. Set False to actually save. geo: Eurostat geos, default EU27 + Norway + Switzerland. year: single year, or omit for latest per code. exclude_micro: exclude micro firms (0-9) from the SME bucket.

Returns the plan (dry_run) or a write summary plus the plan.

ParametersJSON Schema
NameRequiredDescriptionDefault
geoNo
yearNo
dry_runNo
input_pathYes
output_pathNo
exclude_microNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description fully discloses side effects: only yellow input cells on segment rows are written, blue subtotals/grey rows/demand-side rows are untouched, class-level NACE codes are resolved and flagged, and dry_run returns a plan while actual write returns a summary. This is exemplary transparency for a mutation tool.

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

Conciseness4/5

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

The description is well-organized: a concise summary paragraph followed by a detailed Args bullet list. Every sentence provides useful information and avoids redundancy. Though longer than typical MCP descriptions, the complexity of the tool justifies the length, and the structure keeps it scannable.

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?

The description covers the complete workflow, safety mechanisms (dry_run, overwrite warning), edge cases (class-level NACE resolution), and return values (plan or write summary plus plan). With an output schema present, the input side is fully specified. This is a complete and self-contained description for a complex tool.

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 schema has 0% description coverage, so the description completely takes over documenting all six parameters. Each parameter is explained with defaults, examples, and special conditions (e.g., output_path overwrite warning, dry_run behavior, exclude_micro meaning). This adds immense semantic value beyond the raw schema.

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 specific action: reading NACE codes from the TAM workbook's 'Company Counts by Segment' sheet, pulling Eurostat counts, and writing to columns F and G. This distinguishes it from sibling tools which are all read-only getter tools; this is the write/fill operation.

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?

Provides strong usage context: dry_run default allows auditing before committing, warns against overwriting the original unless intended, and explains parameter behaviors. It does not explicitly name alternatives, but the sibling context makes it clear this is the only write tool. The guidance is practical and cautionary.

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

get_company_countA

Count companies in Cognism matching NAICS codes x countries x employee range. Fills the cells Eurostat/Nomis can't:

  • Corp Large 5,000+ -> employee_min=5000

  • Corp Mid-cap 250-4,999 -> employee_min=250, employee_max=4999

  • UK corporates -> countries=["United Kingdom"]

Args: naics: NAICS codes, e.g. ["3344"] (semiconductors). Cognism uses NAICS, not NACE — map your NACE codes first. countries: country names, e.g. ["Germany", "France"] or ["United Kingdom"]. employee_min / employee_max: employee-count band bounds (inclusive).

Requires the Cognism API entitlement to be enabled by your CSM; until then this returns error "no_entitlement". Reads the token from the COGNISM_API_TOKEN env var (Render) or the local .env.cognism file (desktop).

ParametersJSON Schema
NameRequiredDescriptionDefault
naicsYes
countriesYes
employee_maxNo
employee_minNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the burden. It discloses the entitlement requirement, the error behavior ('no_entitlement'), authentication via env var or .env file, and notes that employee bounds are inclusive. This is far beyond typical transparency and gives an agent critical operational knowledge.

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

Conciseness4/5

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

The description is well-organized with a summary, bulleted use cases, 'Args:' block, and a prerequisites paragraph. Every section serves a purpose and the front-loaded summary immediately communicates what the tool does. It is slightly long but structurally efficient and scannable.

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?

The description covers purpose, when to use, all parameter semantics, prerequisite conditions, authentication, and error handling. Since an output schema is present, not describing return values is acceptable. It provides a complete operational picture for an agent to select and invoke the tool without guessing.

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 schema has 0% description coverage, but the description compensates by explaining every parameter with examples: 'naics' with a semiconductor example, 'countries' with country lists, and 'employee_min/employee_max' with band bounds and the inclusive keyword. This fully resolves the otherwise undocumented parameters.

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 it 'Count companies in Cognism' with specific filtering dimensions (NAICS, countries, employee range). It distinguishes itself from siblings by explaining it 'Fills the cells Eurostat/Nomis can't' and explicitly notes Cognism uses NAICS rather than NACE, which clarifies its unique role among count tools.

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?

The description provides explicit use cases ('Corp Large 5,000+', 'Corp Mid-cap 250-4,999', 'UK corporates') and a crucial prerequisite ('Requires the Cognism API entitlement'). It does not explicitly name alternative sibling tools, but the concrete examples and NAICS/NACE mapping give clear context for when this tool is appropriate.

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

get_enterprise_countsA

Enterprise counts for one NACE Rev.2 code, bucketed into SME (1-249) and Corp (250+), summed across the given geographies.

Args: nace_code: NACE Rev.2 code, e.g. "C27", "C28", "D35", "C26.30" (use the Eurostat dotted form for sub-classes, e.g. "C2630" is NOT valid; use "C26.30"). geo: list of Eurostat geo codes. Defaults to EU27 + Norway + Switzerland (["EU27_2020", "NO", "CH"]). Pass individual countries (e.g. ["DE","FR"]) to break it down. NOTE: UK ("UK"/"GB") is not available post-Brexit. year: a single year as a string, e.g. "2022". If omitted, the latest available year is used automatically. exclude_micro: if True, the SME bucket excludes micro firms (0-9 employees), i.e. SME = 10-249. The TAM sheet notes this as an option.

Returns a dict with sme_count, corp_250plus_count, the per-band breakdown, the resolved year, and caveats.

ParametersJSON Schema
NameRequiredDescriptionDefault
geoNo
yearNo
nace_codeYes
exclude_microNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior5/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 discloses defaults (EU27+NO+CH), the UK unavailability post-Brexit, the meaning of exclude_micro, the automatic latest year behavior, and the return structure including caveats. This is rich 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.

Conciseness5/5

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

The description is well-structured with a concise summary followed by per-argument details and a return note. It is appropriately detailed for a four-parameter tool; no sentence is wasted.

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?

The description covers all aspects needed to use the tool correctly: parameter formats, defaults, caveats, and return values. It is complete even though an output schema exists, and it adds useful business context like the TAM sheet note.

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?

Schema coverage is 0%, but the description fully compensates by explaining every parameter: NACE code format including valid dotted notation, geo default and country breakdown, year default behavior, and exclude_micro semantics. This exceeds what the schema alone provides.

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?

The description clearly states the tool returns enterprise counts for a single NACE Rev.2 code, bucketed into SME and Corp, summed across specified geographies. It is specific about the resource and aggregation, but it does not explicitly contrast with sibling tools such as get_segment_counts or get_company_count, so it lacks explicit sibling differentiation.

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?

The description gives strong context for use: it explains the single NACE code requirement, default geographies, country breakdown option, and year behavior. It does not explicitly state when not to use this tool or name alternatives, so it is a 4 rather than a 5.

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

get_segment_countsA

Enterprise counts for a list of NACE codes that make up one value-chain segment, returned per code AND summed for the whole segment. This maps directly onto a row of the "Company Counts by Segment" sheet.

Args: nace_codes: the NACE Rev.2 codes for the segment, e.g. ["C27", "C28"] for "Equipment Suppliers & OEMs". geo: see get_enterprise_counts. Defaults to EU27 + NO + CH. year: single year string, or omit for latest. exclude_micro: exclude micro firms (0-9) from the SME bucket.

Returns per-code results plus a segment_total with combined SME and 250+ counts.

CAUTION: summing NACE codes can double-count a company that reports under more than one activity, and the same firm may also be counted as a startup/scaleup elsewhere. De-dup per the sheet's waterfall before trusting totals.

ParametersJSON Schema
NameRequiredDescriptionDefault
geoNo
yearNo
nace_codesYes
exclude_microNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and excels. It discloses the default geo (EU27 + NO + CH), the optional year, the effect of exclude_micro, the return structure (per-code plus segment_total), and a critical CAUTION about potential double-counting and the need for de-duplication. These are substantial behavioral traits beyond what the input schema reveals.

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 well-structured with a summary, labeled Args, Returns, and a CAUTION. Every sentence contributes essential information, with no filler. The example for nace_codes and the caution are valuable additions without excessive length.

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?

For a tool with 4 parameters and no annotations, the description is highly complete. It covers all parameters, return structure, default behavior, and a critical data-quality caveat. An output schema exists, so the description does not need to detail every field, but it still gives a high-level summary of per-code and segment_total results. The sibling context is implicitly addressed through the geo parameter reference and the segment-specific focus.

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 0% description coverage, so the description must compensate fully. It does: nace_codes is explained with an example, geo references get_enterprise_counts and states the default, year specifies 'single year string, or omit for latest,' and exclude_micro is described as excluding micro firms (0-9) from the SME bucket. Every parameter gains meaning not present in the schema.

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 a specific action: 'Enterprise counts for a list of NACE codes that make up one value-chain segment, returned per code AND summed for the whole segment.' This identifies both the resource (NACE-coded segment) and the unique aggregation behavior (per-code and total sum), distinguishing it from siblings like get_enterprise_counts and get_company_count. The reference to the 'Company Counts by Segment' sheet further anchors its specific use case.

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?

The description gives clear context by stating it maps directly to a row in a specific sheet, implying when to use it. It also provides a caution about double-counting and references get_enterprise_counts for the geo parameter, signaling a related alternative. However, it does not explicitly say 'use this instead of get_enterprise_counts when you need segment totals,' so it stops short of the explicit alternatives required for a 5.

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

get_startup_scaleup_countsA

Count Startups and Scaleups for one value-chain segment via Harmonic, split on funding raised (TAM sheet columns D and E).

Startup = raised <= split_at; Scaleup = raised > split_at and < 5,000 staff.

Args: industry_tags: Harmonic industry tags for the segment, e.g. ["Aerospace Technology"], ["Defense Technology & Services"], ["Advanced Manufacturing & Robotics"], ["Hardware & Semiconductors"]. technology_tags: optional Harmonic technology tags, e.g. ["Hardware", "Robotics", "Sensors", "Manufacturing"]. region: Harmonic region, default "EUROPE". split_at: Startup/Scaleup funding boundary. Default 30,000,000. NOTE: Harmonic funding is ~USD; EUR 30M ~= USD 32-33M — set accordingly. exclude_business_tags: e.g. ["Consumer (B2C)"] to drop B2C.

Requires HARMONIC_API_KEY (env on Render, .env.harmonic on desktop). Returns exact counts; Harmonic's tags are coarser than the sheet's segments, so use clean-tag segments precisely and allocate the rest from market totals.

ParametersJSON Schema
NameRequiredDescriptionDefault
regionNoEUROPE
split_atNo
industry_tagsNo
technology_tagsNo
exclude_business_tagsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the HARMONIC_API_KEY requirement, states that 'Returns exact counts', explains the currency caveat ('Harmonic funding is ~USD; EUR 30M ~= USD 32-33M'), and defines the startup/scaleup classification logic. This goes beyond typical transparency, though it omits error/limit behaviors.

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 front-loaded with a one-sentence purpose, followed by a compact Args list and essential notes. Every sentence adds value—no fluff or repetition of schema defaults. The structure makes it easy to scan and extract key points.

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 the tool has an output schema (so return format need not be described) and no annotations, the description is complete: it covers authentication, definitions, parameter semantics, a data-quality caveat ('tags are coarser... use clean-tag segments precisely'), and the connection to the TAM sheet. It leaves no major gap for an agent to invoke the tool correctly.

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?

Schema description coverage is 0%, so the description must fully explain parameters. It does: each of the five parameters gets a clear description, examples (industry_tags, technology_tags, exclude_business_tags), defaults (region, split_at), and the crucial EUR/USD note for split_at. This exceeds the schema's bare types.

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 opens with a specific verb and resource: 'Count Startups and Scaleups for one value-chain segment via Harmonic, split on funding raised.' This clearly distinguishes it from siblings like get_enterprise_counts, get_segment_counts, and get_company_count, which target different count types.

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 gives clear context for when the tool is appropriate ('for one value-chain segment', 'TAM sheet columns D and E') and offers a tip on handling Harmonic's coarse tags. However, it does not explicitly compare against sibling tools or state when to use this instead of another, so the guidance is implied rather than explicit.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedfill_tam_sheet
    • First observedget_company_count
    • First observedget_enterprise_counts
    • First observedget_segment_counts
    • First observedget_startup_scaleup_counts

TDQS

A4.3/5.0
Disambiguation3/5

The first two tools, get_enterprise_counts and get_segment_counts, both fetch Eurostat counts by NACE codes, differing mainly in single-code vs. multi-code input, which could cause misselection. The other tools are clearly distinct by data source (Cognism, Harmonic) or role (orchestration), but the overlap between the Eurostat pair is notable.

Naming Consistency3/5

Four tools follow a 'get_' + noun pattern, but fill_tam_sheet breaks the pattern with a different verb. There is also inconsistency between singular 'count' (get_company_count) and plural 'counts' (get_enterprise_counts, get_segment_counts, get_startup_scaleup_counts), which is minor but detracts from a uniform style.

Tool Count5/5

With just 5 tools, the server is tightly scoped to the task of populating a TAM sheet from multiple data sources. Each tool has a clear role, and the count feels neither bloated nor inadequate for the stated purpose.

Completeness4/5

The tool set covers the full workflow: fetching Eurostat counts, segment-level aggregation, filling gaps with Cognism data, startup/scaleup counts from Harmonic, and writing the final workbook with a dry-run option. A minor gap is the lack of a dedicated NACE-to-NAICS mapping helper, but this is acknowledged in the get_company_count description as a prerequisite rather than a server responsibility.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    MCP server for EU company and business data. 9 tools: company search (GLEIF, 2M+ entities), LEI lookup, corporate structures (parent/subsidiaries), trade register search, EU VAT validation (VIES), GDP, unemployment, inflation, and business demography (Eurostat). All APIs free, no keys required.
    9
    4
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Exposes the Eurostat Statistics API, enabling LLMs to discover, explore, and retrieve official EU statistical data through search, dimension inspection, and data retrieval tools.
    3
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/linimeanie/eurostat-tam-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server