Skip to main content
Glama
linimeanie

Eurostat TAM MCP server

by linimeanie

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.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.

  • Average 4.6/5 across 5 of 5 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 5 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • 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.

  • 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.

  • 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.

  • 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.

  • 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.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

Eurostat TAM MCP server MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

Eurostat TAM MCP server MCP server – quality and maintenance score on Glama

Copy to your README.md:

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