Skip to main content
Glama

Server Details

Search and query the Eurostat catalogue — EU economy, demography, trade, and NUTS regional data.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/eurostat-mcp-server
GitHub Stars
1

Glama MCP Gateway

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

MCP client
Glama
MCP server

Full call logging

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

Tool access control

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

Managed credentials

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

Usage analytics

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

100% free. Your data is private.
Tool DescriptionsA

Average 4.7/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of Eurostat data access: theme navigation, metadata, dimension values, querying, and keyword search. There is no functional overlap, and descriptions clearly differentiate their purposes.

Naming Consistency5/5

All tools follow a consistent 'eurostat_verb_noun' pattern using snake_case (e.g., browse_themes, get_dataset_info, query_dataset). The naming is uniform and predictable.

Tool Count5/5

With 5 tools, the server covers the complete workflow of discovering and querying Eurostat data without being cluttered. The count is well-scoped for its domain.

Completeness5/5

The tool set provides full lifecycle coverage: discovery (browse, search), metadata exploration (info, dimension values), and data retrieval (query). No obvious gaps exist for the intended use.

Available Tools

5 tools
eurostat_browse_themesBrowse Eurostat Theme Hierarchy
Read-onlyIdempotent
Inspect

Navigate the Eurostat theme tree. Without theme_code returns the top-level theme folders (Economy, Population, Transport, etc.) — the practical starting points. With a theme_code returns its immediate children: subtheme folders and datasets in that branch. Use this for structured discovery when you know the domain but not the dataset code, or to drill down from a broad topic to a specific dataset. Pair with eurostat_search_datasets for keyword-based discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
theme_codeNoFolder code to expand (e.g., "econ", "reg"). Omit to list the top-level theme folders.

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYesImmediate children of the requested theme, or the root themes if theme_code was omitted.
nextStepNoSuggested next action based on these results. Populated when there is a clear follow-up call.
itemCountYesNumber of items returned in this level.
themeCodeNoFolder code that was browsed, or omitted for root.
parentPathYesBreadcrumb from root to the requested theme (e.g., ["Economy and finance", "National accounts"]). Empty when browsing root.
eurostat_get_dataset_infoGet Eurostat Dataset Info
Read-onlyIdempotent
Inspect

Fetch metadata for a Eurostat dataset: dimensions with valid values, time range, observation count, and last-update date. Call this before eurostat_query_dataset to discover what dimension codes are valid (unit, na_item, geo, etc.). Returns up to 10 sample values per dimension for orientation; use eurostat_get_dimension_values to list the full set for large dimensions.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataset_codeYesDataset code (e.g., "nama_10_gdp"). Use eurostat_search_datasets or eurostat_browse_themes to find codes.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeYesDataset code as provided.
labelYesHuman-readable dataset title.
obsCountYesTotal number of observations in the full dataset (all periods).
timeRangeYesOverall data coverage period for this dataset.
dimensionsYesAll dimensions of the dataset with their valid codes and labels.
lastUpdatedYesISO 8601 timestamp of the most recent data update.
metadataUrlNoURL to the ESMS HTML metadata page for this dataset. Omitted when not provided by Eurostat.
eurostat_get_dimension_valuesGet Eurostat Dimension Values
Read-onlyIdempotent
Inspect

List all valid values for a specific dimension in a Eurostat dataset (e.g., all unit codes for nama_10_gdp, all geo codes for a regional dataset). Use this when eurostat_get_dataset_info returns more values than the 10-item sample, or to confirm exact codes before querying. For the "geo" dimension, use geo_level to filter by NUTS hierarchy (country, nuts1, nuts2, nuts3). Invalid dimension_value codes passed to eurostat_query_dataset silently return no data; use this tool to verify codes first.

ParametersJSON Schema
NameRequiredDescriptionDefault
dimensionYesDimension code to retrieve values for (e.g., "unit", "na_item", "geo"). Use eurostat_get_dataset_info to see available dimensions.
geo_levelNoNUTS hierarchy level filter — only relevant when dimension is "geo". Options: "aggregate" (EU/EA codes), "country" (2-letter codes, default), "nuts1" (3-char), "nuts2" (4-char), "nuts3" (5-char).
dataset_codeYesDataset code (e.g., "nama_10_gdp").

Output Schema

ParametersJSON Schema
NameRequiredDescription
valuesYesAll valid values for this dimension in the dataset.
totalCountYesTotal number of distinct values returned.
dimensionCodeYesThe dimension code that was queried.
dimensionLabelYesHuman-readable dimension name.
eurostat_query_datasetQuery Eurostat Dataset
Read-onlyIdempotent
Inspect

Fetch statistical data from a Eurostat dataset with dimension filters. Returns decoded observations with dimension codes and labels, numeric values, and status flags (e.g., "p" = provisional, "e" = estimated). Call eurostat_get_dataset_info first to discover valid dimension codes and values. Apply filters to keep the result set manageable — large unfiltered queries may trigger an async response error. Use filters.geo for specific country/region codes, or geo_level for NUTS hierarchy filtering (mutually exclusive). Use last_n_periods for the N most recent periods without knowing the end date.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage for labels in the response. Default is "EN". Options: "EN", "FR", "DE".EN
filtersNoDimension filters as a map of dimension code → array of valid values. Example: {"unit": ["CP_MEUR"], "na_item": ["B1GQ"], "geo": ["DE", "FR"]}. Do not include "geo" here if using geo_level. Invalid dimension values silently return no data — verify with eurostat_get_dimension_values first.
geo_levelNoFilter by NUTS hierarchy level. Mutually exclusive with a "geo" key in filters. Options: "aggregate" (EU/EA totals), "country" (41 member/candidate states), "nuts1" (127 major regions), "nuts2" (309 basic regions), "nuts3" (1,343 small regions).
dataset_codeYesDataset code (e.g., "nama_10_gdp"). Required.
since_periodNoStart of time range (e.g., "2020", "2023-Q1", "2024-01"). Mutually exclusive with last_n_periods.
until_periodNoEnd of time range (e.g., "2024"). Omit for data through the latest available period. Mutually exclusive with last_n_periods.
last_n_periodsNoReturn only the N most recent periods. Mutually exclusive with since_period and until_period.

Output Schema

ParametersJSON Schema
NameRequiredDescription
noticeNoGuidance when the result was truncated at 5,000 rows. Omitted for normal results.
obsCountYesTotal number of observations matched (before any cap).
timeRangeYesTime coverage of the returned observations.
truncatedYesTrue when the result exceeded 5,000 observations and was capped. Apply dimension filters to get the full result.
datasetCodeYesDataset code as provided.
datasetLabelYesHuman-readable dataset title.
observationsYesDecoded observations, capped at 5,000 rows. When truncated is true, apply dimension filters to narrow the result.
appliedFiltersYesEffective query parameters applied to the Eurostat API.
dimensionsUsedYesOrdered list of dimension codes present in the response (e.g., ["freq", "unit", "na_item", "geo", "time"]).
missingObsCountYesNumber of observations with null value (missing data points in the source).
eurostat_search_datasetsSearch Eurostat Datasets
Read-onlyIdempotent
Inspect

Search the Eurostat catalogue by keyword. Returns matching datasets with codes, descriptions, period coverage, and theme breadcrumbs. Use this to discover dataset codes before calling eurostat_get_dataset_info or eurostat_query_dataset. Results are limited to datasets and predefined tables — folders are excluded.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size — maximum datasets returned per page (1–100). Default is 20. To retrieve matches beyond one page, pass the returned nextCursor back as cursor; the page size is fixed by this first call.
queryYesSearch terms. Split on whitespace into tokens; every token must match (AND), case-insensitively, somewhere across the dataset label, theme breadcrumb, or code. Word order does not matter, so "business demography NUTS 3" or "regional economic accounts" resolve without naming a label verbatim.
cursorNoOpaque pagination cursor from a previous call's nextCursor. Omit for the first page; pass it back to fetch the next page of matches over a stable order.

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch terms as submitted.
datasetsYesMatching datasets for the current page, up to the requested limit.
nextStepNoSuggested next action based on these results. Populated when there is a clear follow-up call.
truncatedYesTrue when more matches remain beyond this page — pass nextCursor as cursor to fetch them.
nextCursorNoOpaque cursor for the next page of matches. Pass it back as cursor. Omitted on the last page.
totalMatchesYesTotal datasets matching the query across all pages, before the page limit.

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.