istat-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_DEBUG | No | Set to 'true' for detailed error tracebacks in responses. | false |
| MCP_STORAGE_DIR | No | Override the default storage directory for downloaded files. | Platform-specific default (e.g., ./data on Linux/macOS) |
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 |
|---|---|
| get_list_of_available_datasetsA | Get a list of available datasets from ISTAT |
| search_datasetsA | Search datasets in ISTAT website by a query string |
| get_dataset_dimensionsC | Get the dimensions of a dataset |
| get_dimension_valuesC | Get the values of a dimension for a given dataset |
| get_dataA | |
| get_data_limitedA | |
| get_summaryA | |
| get_dataset_urlA | |
| download_datasetA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| istat_overview | General info about ISTAT API usage. |
TDQS
Scored across 9 tools
Tools are mostly distinct: download_dataset handles file download, get_data and get_data_limited differ by limit, and others cover distinct metadata and discovery functions. Slight overlap between get_data and get_data_limited could cause confusion but descriptions clarify.
All tool names follow a consistent verb_noun pattern with snake_case (get_, download_, search_), making them predictable and easy to use.
With 9 tools covering discovery, metadata, and data retrieval, the count is well-scoped for an ISTAT data access server—neither too many nor too few.
The tool set provides a complete workflow: dataset discovery (list, search), metadata exploration (dimensions, summary), and data retrieval with multiple options (filtered, limited, URL, download). No obvious gaps for its intended purpose.