The DataGov Israel MCP server provides programmatic access to Israel's open government data portal (data.gov.il) with built-in analysis and visualization capabilities.
Core Capabilities:
Search & Discovery: Search thousands of public datasets by keyword with filters, sorting, and pagination; browse organizations and licenses; retrieve detailed metadata for datasets and organizations
Data Retrieval: Fetch raw data from dataset resources with pagination support, full-text search, and filtering via datastore operations
Data Analysis: Profile datasets to understand field types, identify missing values, and get statistical summaries (min, max, mean for numeric fields; top values for categorical fields)
Visualization: Generate interactive charts (histograms, bar, line, scatter plots) as Vega-Lite specifications and self-contained HTML; create geographic maps from lat/long data as GeoJSON and Leaflet HTML
Full CKAN API Coverage: Access all standard endpoints including package, organization, resource, and datastore operations; check system status and extensions
Key Features:
Async I/O with proper error handling, retries, and connection pooling
Full type safety and validation
Integration with Claude Desktop and MCP Inspector for testing and development
Support for large datasets with pagination
Allows cloning of the repository to access the MCP server code.
References GitHub for examples of other MCP servers and implementation patterns.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Datagov Israel MCPshow me the latest population statistics dataset"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DataGov Israel MCP Server
A Model Context Protocol (MCP) server for interacting with the Israeli Government Public API (data.gov.il). Access thousands of public datasets with built-in visualization capabilities.
Screenshots
Visualization Tools in Action
Generate interactive charts and maps from Israeli government datasets:

Related MCP server: Oracle MCP Server by CData
Features
β Async I/O: True async operations with httpx for optimal performance
π Full CKAN API Coverage: Search datasets, organizations, and resources
π Visualization Tools: Generate charts and maps from data
π§ͺ Comprehensive Tests: 34+ automated tests with HTTP mocking
π Modern FastMCP: Built on FastMCP 2.14+ with best practices
π¦ Type Safe: Full type hints and validation
Quick Start
Installation
This project uses uv package manager for fast, reliable dependency management.
Using with Claude Desktop
Install the server directly into Claude Desktop:
Then restart Claude Desktop and you'll see the DataGovIL tools available!
Testing with MCP Inspector
Launch the interactive inspector to test tools:
This opens a web interface where you can:
Browse all available tools
Test tool calls with different parameters
View real-time responses
Debug issues
Available Tools
Core CKAN Tools
status_show
Get the CKAN version and installed extensions.
license_list
List all available licenses for datasets.
package_list
Get a list of all dataset IDs.
package_search
Search for datasets with filters.
Parameters:
q(string): Query string (e.g., "education")fq(string): Filter query in SOLR formatsort(string): Sort order (e.g., "metadata_modified desc")rows(int): Number of results (default: 20)start(int): Pagination offset (default: 0)include_private(bool): Include private datasets (default: false)
Example:
package_show
Get detailed metadata for a specific dataset.
Parameters:
id(string, required): Dataset ID or name
Example:
organization_list
List all organizations.
organization_show
Get details about a specific organization.
Parameters:
id(string, required): Organization ID or name
resource_search
Search for resources within datasets.
Parameters:
query(string): SOLR query (e.g., "format:CSV")order_by(string): Sort fieldoffset(int): Pagination offsetlimit(int): Maximum results (default: 100)
datastore_search
Search data within a datastore resource.
Parameters:
resource_id(string, required): Resource IDq(string): Full-text querylimit(int): Max records (default: 100)offset(int): Pagination offsetsort(string): Sort orderfields(string): Comma-separated field namesOther CKAN datastore parameters
Example:
fetch_data
Convenience tool to get data from a dataset by name.
Automatically finds the first resource and fetches its data.
Parameters:
dataset_name(string, required): Dataset name or IDlimit(int): Number of records (default: 100)offset(int): Pagination offset
Visualization Tools π
dataset_profile
Profile a dataset to understand its structure and quality.
Parameters:
resource_id(string, required): Resource ID to profilesample_size(int): Number of records to analyze (default: 100)
Returns:
Field types (integer, number, string, coordinate)
Missing value statistics
Numeric statistics (min, max, mean)
Top values for categorical fields
Example:
Response:
chart_generator
Generate interactive Vega-Lite charts.
Parameters:
resource_id(string, required): Resource IDchart_type(string, required): 'histogram', 'bar', 'line', or 'scatter'x_field(string, required): X-axis field namey_field(string): Y-axis field name (not needed for histogram)title(string): Chart titlelimit(int): Max records to visualize (default: 100)
Returns:
vega_lite_spec: Vega-Lite JSON specificationhtml: Self-contained HTML with embedded chart
Example:
map_generator
Generate interactive maps from geographic data.
Parameters:
resource_id(string, required): Resource IDlat_field(string, required): Latitude field namelon_field(string, required): Longitude field namelimit(int): Max points to map (default: 500)
Returns:
geojson: GeoJSON FeatureCollectionhtml: Interactive Leaflet mappoint_count: Number of valid pointscenter: Map center coordinates
Example:
Usage Examples
Finding and Visualizing Data
Creating Visualizations
Development
Running Tests
Code Style
Project Structure
Architecture
Async HTTP Layer
All HTTP requests use httpx.AsyncClient with:
30-second timeout
Automatic retries for 5xx errors
Proper error handling and logging
Connection pooling
Error Handling
Release Notes
See CHANGELOG.md for detailed release notes.
Latest: v0.3.0 (2024-02-14)
Major modernization release:
β Migrated to async httpx (from blocking requests)
β Added 3 visualization tools (profile, charts, maps)
β Comprehensive test suite (34 tests, 100% pass rate)
β CI/CD with GitHub Actions
β Package structure with proper modules
β Detailed documentation and examples
Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
Quick start:
Fork the repository
Create a feature branch
Make changes with tests
Submit a pull request
For examples of other MCP servers, see the Model Context Protocol servers repository.
Troubleshooting
Port Conflicts
If you encounter port conflicts with MCP Inspector:
Windows + OneDrive
For Windows users: avoid running installation in folders watched by OneDrive. See this issue for details.
Import Errors
If you encounter import errors, ensure you installed in editable mode:
License
This project is licensed under the MIT License. See the LICENSE file for details.
Acknowledgments
Built with FastMCP
Data from Israel Open Data Portal
Charts powered by Vega-Lite
Maps powered by Leaflet