Model Context Protocol server for accessing Italian National Statistical Institute (ISTAT) data
Project description
ISTAT MCP Server
A Model Context Protocol (MCP) server that enables Large Language Models to access and analyze data from the Italian National Statistical Institute (ISTAT) directly.
What is this?
This MCP server allows LLMs like Claude to seamlessly query, filter, and download statistical datasets from ISTAT, enabling natural language data analysis workflows. Instead of manually searching for datasets, constructing API queries, and downloading data, you can simply ask your LLM to find and analyze Italian statistical data.
Built on top of: This server uses the excellent istatapi open-source Python wrapper by ondata, which simplifies interaction with ISTAT's SDMX REST API.
Features
- Dataset Discovery: Search and browse all available ISTAT datasets
- Dimension Exploration: Inspect dataset structure and available filters
- Flexible Data Retrieval: Get data directly in JSON or download large datasets
- Smart Error Handling: Automatic fallback to file downloads for large/timeout scenarios
- Secure Storage: Configurable storage directory with path traversal protection
- Cross-Platform: Works on WSL, Windows, macOS, and Linux
Use Cases
Enable your LLM to:
- Find Italian economic indicators (GDP, unemployment, inflation)
- Analyze demographic trends and population statistics
- Compare regional data across Italy
- Download and process large statistical datasets
- Create data visualizations from ISTAT data
- Answer questions about Italian statistics naturally
Installation
Quick Start (Recommended)
The easiest way to use this MCP server is directly with uvx - no installation required:
uvx istat-mcp-server
Install from PyPI
# Using pip
pip install istat-mcp-server
# Using uv
uv pip install istat-mcp-server
Install from Source (for development)
# Clone the repository
git clone https://github.com/Halpph/istat-mcp-server.git
cd istat-mcp-server
# Install with uv (recommended)
uv sync
# Or install with pip
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .
Configuration
Claude Desktop Setup
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"istat": {
"command": "uvx",
"args": ["istat-mcp-server"],
"env": {
"MCP_STORAGE_DIR": "/path/to/data/storage"
}
}
}
}
That's it! Claude Desktop will automatically download and run the server from PyPI.
Alternative: Running from local installation
If you installed from source or want to run a development version:
{
"mcpServers": {
"istat": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/istat-mcp-server",
"run",
"istat-mcp-server"
],
"env": {
"MCP_STORAGE_DIR": "/path/to/data/storage"
}
}
}
}
Storage Configuration
By default, downloaded files are saved to:
- WSL:
/mnt/c/Users/Public/Downloads/mcp-data/ - Windows:
%USERPROFILE%\Downloads\mcp-data - Linux/macOS:
./data
Override this by setting the MCP_STORAGE_DIR environment variable.
Other Environment Variables
MCP_DEBUG: Set totruefor detailed error tracebacks in responses
Available Tools
Dataset Discovery
get_list_of_available_datasets()- List all available ISTAT datasetssearch_datasets(query)- Search datasets by keyword
Dataset Exploration
get_dataset_dimensions(dataflow_identifier)- Get dimensions/structure of a datasetget_dimension_values(dataflow_identifier, dimension)- Get possible values for a dimension
Data Retrieval
get_data(dataflow_identifier, filters)- Get data with filters (or URL if too large)get_data_limited(dataflow_identifier, filters, limit)- Get limited number of recordsget_summary(dataflow_identifier, filters)- Get statistical summary of filtered data
File Operations
get_dataset_url(dataflow_identifier, filters)- Get download URL with metadatadownload_dataset(url, output_path)- Download dataset to local storage
Example Usage
With Claude Desktop
Once configured, you can interact naturally:
You: "Find datasets about Italian unemployment"
Claude: [Uses search_datasets tool]
I found several unemployment datasets...
You: "Get the monthly unemployment rate for 2024"
Claude: [Uses get_dataset_dimensions, get_dimension_values, get_data tools]
Here's the unemployment data for 2024...
Programmatic Usage
from mcp.client import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
# Connect to the server
server_params = StdioServerParameters(
command="uvx",
args=["istat-mcp-server"]
)
async with stdio_client(server_params) as (read, write):
async with ClientSession(read, write) as session:
# List available tools
tools = await session.list_tools()
# Call a tool
result = await session.call_tool("search_datasets", {"query": "unemployment"})
Development
Running Tests
# With uv
uv run pytest
# With pip
pytest
Project Structure
istat-mcp-server/
├── main.py # Main MCP server implementation
├── test_main.py # Comprehensive test suite
├── pyproject.toml # Project metadata and dependencies
├── uv.lock # Dependency lock file
├── README.md # This file
├── CONTRIBUTING.md # Contribution guidelines
├── LICENSE # MIT License
├── docs/ # Additional documentation
│ ├── TESTING.md # Testing guide
│ └── ISTATAPI_REFERENCE.md # API reference
├── examples/ # Example configurations
│ └── gemini-extension.json # Gemini setup example
└── .github/
└── workflows/ # CI/CD pipelines
├── test.yml # Automated testing
└── release.yml # Release automation
How It Works
- MCP Protocol: The server implements the Model Context Protocol, exposing ISTAT data operations as "tools" that LLMs can call
- ISTAT API Wrapper: Uses the istatapi library to interact with ISTAT's SDMX REST API
- Smart Handling: Automatically handles large datasets by falling back to file downloads
- Secure Storage: All file operations are restricted to a configured storage directory
Credits
- ISTAT API Wrapper: This project relies on istatapi by ondata, an excellent open-source Python wrapper for ISTAT's SDMX API
- Data Source: ISTAT (Istituto Nazionale di Statistica) - Italian National Institute of Statistics
- MCP Protocol: Anthropic's Model Context Protocol
License
MIT License - see LICENSE file for details
Contributing
Contributions are welcome! We appreciate bug reports, feature requests, documentation improvements, and code contributions.
Please see CONTRIBUTING.md for detailed guidelines on:
- Setting up your development environment
- Running tests
- Code style and conventions
- Submitting pull requests
Quick start for contributors:
# Fork and clone the repo
git clone https://github.com/YOUR_USERNAME/istat-mcp-server.git
cd istat-mcp-server
# Install dependencies
uv sync
# Run tests
uv run pytest
# Make your changes and submit a PR!
Roadmap
Future enhancements planned:
- Add caching for frequently accessed datasets
- Support for more data export formats (CSV, JSON, Excel)
- Integration with data visualization tools
- Support for ISTAT time series analysis
- Multi-language support (Italian/English metadata)
FAQ
How do I find the right dataset?
Use the search_datasets tool with keywords like "unemployment", "GDP", "population", etc. The tool searches through all ISTAT dataset titles and descriptions.
Why am I getting a URL instead of data?
For large datasets or when the API times out, the server automatically returns a download URL instead. You can then use the download_dataset tool to save the data locally.
Can I use this with other LLMs besides Claude?
Yes! Any MCP-compatible client can use this server. See the MCP documentation for more information.
Where is the downloaded data stored?
By default:
- WSL:
/mnt/c/Users/Public/Downloads/mcp-data/ - Windows:
%USERPROFILE%\Downloads\mcp-data - Linux/macOS:
./data
You can customize this with the MCP_STORAGE_DIR environment variable.
Changelog
See Releases for version history and changes.
Support
For issues or questions:
- Open an issue on GitHub
- Check ISTAT API documentation
- Refer to istatapi guide
Acknowledgments
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file istat_mcp_server-0.1.2.tar.gz.
File metadata
- Download URL: istat_mcp_server-0.1.2.tar.gz
- Upload date:
- Size: 156.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e15e600356ab870a1da6d7dcf43a6aab7c42eafa5b84c44e45ba7578524d7ef
|
|
| MD5 |
ea49325744d491eac2d7dbd9f8efedb5
|
|
| BLAKE2b-256 |
fa6f3a3e26768edfd8494f1a2d76ed5982a07fe3bd42cbeb210c7ae282a4db5b
|
File details
Details for the file istat_mcp_server-0.1.2-py3-none-any.whl.
File metadata
- Download URL: istat_mcp_server-0.1.2-py3-none-any.whl
- Upload date:
- Size: 171.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fe3d403592379a799952a6d128866d2d539830d4a045086576007d6981cb15a
|
|
| MD5 |
75a6c082afd01c13758ee88647d85c3a
|
|
| BLAKE2b-256 |
8e276fb5a9b7a8431974daff1133689c60294b48532f91a58ddaea765af57ced
|