by opendatamcp
Connect to millions of open data sources including government, NGO, and company datasets with OpenDataMCP—your open data
Gives your AI assistant direct access to millions of open government, NGO, and company datasets through a simple MCP connection.
OpenDataMCP is a community-built MCP server published by opendatamcp that provides AI assistants with tools and capabilities via the Model Context Protocol. Connect to millions of open data sources including government, NGO, and company datasets with OpenDataMCP—your open data It is categorized under analytics data. This server exposes 21 tools that AI clients can invoke during conversations and coding sessions.
You can install OpenDataMCP in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
OpenDataMCP is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
OpenDataMCP is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend OpenDataMCP for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, OpenDataMCP benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
OpenDataMCP reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We evaluated OpenDataMCP against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend OpenDataMCP for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
OpenDataMCP reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We wired OpenDataMCP into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: OpenDataMCP is the kind of server we cite when onboarding engineers to host + tool permissions.
OpenDataMCP is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
showing 1-10 of 36
https://github.com/user-attachments/assets/760e1a16-add6-49a1-bf71-dfbb335e893e
We enable 2 things:
How do we do that?
If you want to use Open Data MCP with Claude Desktop app client you need to install the Claude Desktop app.
You will also need uv to easily run our CLI and MCP servers.
# you need to install uv through homebrew as using the install shell script
# will install it locally to your user which make it unavailable in the Claude Desktop app context.
brew install uv
# (UNTESTED)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# show available commands
uvx odmcp
# show available providers
uvx odmcp list
# show info about a provider
uvx odmcp info $PROVIDER_NAME
# setup a provider's MCP server on your Claude Desktop app
uvx odmcp setup $PROVIDER_NAME
# remove a provider's MCP server from your Claude Desktop app
uvx odmcp remove $PROVIDER_NAME
Quickstart for the Switzerland SBB (train company) provider:
# make sure claude is installed
uvx odmcp setup ch_sbb
Restart Claude and you should see a new hammer icon at the bottom right of the chat.
You can now ask questions to Claude about SBB train network disruption and it will answer based on data collected on data.sbb.ch.
Install UV Package Manager
# macOS
brew install uv
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Linux/WSL
curl -LsSf https://astral.sh/uv/install.sh | sh
Clone & Setup Repository
# Clone the repository
git clone https://github.com/OpenDataMCP/OpenDataMCP.git
cd OpenDataMCP
# Create and activate virtual environment
uv venv
source .venv/bin/activate # Unix/macOS
# or
.venv\Scripts\activate # Windows
# Install dependencies
uv sync
Install Pre-commit Hooks
# Install pre-commit hooks for code quality
pre-commit install
Create a New Provider Module
src/odmcp/providers/.{country_code}_{organization}.py (e.g., ch_sbb.py).Implement Required Components
Tool vs Resource
Testing
tests/ directoryValidation
uv run src/odmcp/providers/client.pyFor other examples, check our existing providers in the src/odmcp/providers/ directory.
We have an ambitious roadmap and we want this project to scale with the community. The ultimate goal is to make the millions of datasets publicly available to all LLM applications.
For that we need your help!
We want to build a helping community around the challenge of bringing open data to LLM's. Join us on discord to start chatting: https://discord.gg/QPFFZWKW
Because of our target scale we want to keep things simple and pragmatic at first. Tackle issues with the community as they come along.
Simplicity and Maintainability
Standardization / Templates
Dependencies
Code Quality
Type Safety
Let’s build the open source infrastructure that will allow all LLMs to access all Open Data together!
We are very early, and lack of dataset available is currently the bottleneck. Help yourself! Create your Open Data MCP server and get users to use it as well from their LLMs applications. Let’s connect LLMs to the millions of open datasets from governments, public entities, companies and NGOs!
As Anthropic's MCP evolves we will adapt and upgrade Open Data MCP.
This project is licensed under the MIT License - see the LICENSE file for details
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.