opendata-ua-mcp
Enables Google Gemini to search and analyze Ukraine's open data portal using natural language queries.
Enables local AI models via Ollama to search and analyze Ukraine's open data portal using natural language queries.
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., "@opendata-ua-mcpFind ecology datasets from Lviv 2024"
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.
opendata-mcp — data.gov.ua MCP server
An open-source MCP server that lets any MCP-compatible AI agent search and analyze Ukraine's national open-data portal data.gov.ua in natural language.
It speaks the Model Context Protocol, so it works with any client that supports MCP — including Claude (Desktop / Code), ChatGPT (Developer Mode / custom connectors), Google Gemini, Cursor, Cline / Continue, VS Code Copilot, local models via Ollama / LM Studio, and your own agents built on the Python/TypeScript MCP SDKs. Not tied to any single vendor.
Phase 1: read-only, public endpoints — no API token, no auth required.
Design
Tools are jobs-to-be-done, not thin API wrappers. Each tool does a complete user task, composes several CKAN calls internally, hides portal quirks (UUID slugs, dirty formats, sparse DataStore, Unicode homoglyphs), and returns a token-efficient slim result (a search hit is ~150 B vs ~17 KB raw).
Tool | What it does |
| Find datasets by topic; ranked slim candidates + refine hints |
| Aggregate view (who publishes / how much) — counts only |
| Full dataset card: license, freshness, resources |
| Get the actual data — auto-picks best resource; DataStore or download+parse CSV/JSON/XLSX/XML, including files inside ZIP archives (ЄДР, debtors registries) |
| Filter rows / read-only SQL over a structured (DataStore) resource |
| Recently updated datasets, filterable by topic/org |
Related MCP server: Data.gov.il MCP Server
Install
The server runs over stdio, the transport every MCP client understands. The config below is the same everywhere — only the file/menu where you paste it differs per client.
Any MCP client (npm) — universal
{
"mcpServers": {
"opendata-ua": {
"command": "npx",
"args": ["-y", "@opendata-ua/mcp-server"]
}
}
}Where to put it:
Client | Location |
Claude Desktop | Settings → Developer → Edit Config ( |
Claude Code |
|
ChatGPT | Settings → Connectors → add MCP server (Developer Mode) |
Google Gemini | Gemini CLI / SDK |
Cursor | Settings → MCP → Add Server ( |
Cline / Continue / VS Code | the extension's MCP settings |
Custom agent | point your MCP SDK at |
Claude Desktop — one-click DXT
DXT is Claude Desktop's drag-and-drop bundle format:
Download
opendata-ua-mcp.dxtfrom Releases.Drag it into Claude Desktop → Settings → Extensions. Done. No config.
From source
npm install
npm run build
node dist/stdio.js # any MCP client can spawn thisTry it
"Find ecology datasets from Lviv published in 2024" "Which organizations publish the most procurement data?" "Show me the first rows of the stolen-vehicles register"
Configuration (optional)
Env var | Default | Purpose |
|
| API base (mirror/dev portal) |
|
| LRU cache TTL for catalogs |
|
| Request timeout |
|
| Per-response context-budget ceiling |
|
| Cap for files downloaded + parsed locally |
|
|
|
Develop
npm test # vitest
npm run typecheck
npm run lint
npm run smoke # live test against data.gov.ua
npm run build:dxt # build the .dxt packageThe portal runs CKAN 2.7.2. DataStore (queryable rows) covers only ~0.3 % of resources, so get_dataset_data downloads + parses files locally when needed; filter_data/SQL apply to the DataStore-active minority.
License
MIT © Open Data UA Community
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VladyslavMykhailyshyn/opendata-ua-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server