datanika-mcp
Read-only-by-default MCP server for Datanika, an open-source dlt + dbt-core data pipeline platform: browse connections, introspect and preview source tables, compile and run dbt transformations, and monitor pipeline runs. 25 tools (17 read-only, plus 8 write tools gated behind --allow-write); source lives in the datanika-mcp/ subdirectory of the repo.
README
Datanika
Open-source data pipeline platform — Extract, Load, Transform, and Orchestrate from a single UI.
Datanika combines dlt (extract + load) with dbt-core (transform) and adds visual pipeline management, scheduling, and monitoring — all in one Python-native platform.
Think Airbyte + dbt Cloud + Airflow — in one tool, self-hostable with Docker Compose.
Features
🔌 36 Connectors — PostgreSQL, MySQL, Oracle, MongoDB, BigQuery, Snowflake, Stripe, HubSpot, Salesforce, Kafka, S3, and more
🔄 dbt Transformations — SQL models, tests, snapshots, packages, and source freshness built in
📊 Visual Pipeline Builder — DAG editor with dependency management
⏰ Scheduling — Cron-based with APScheduler, persistent across restarts
📈 Monitoring — Run history, streaming logs, and dashboard stats
🔐 Enterprise Security — RBAC, SSO (SAML/OIDC), audit logging, encrypted credentials
🌍 9 Languages — English, German, French, Spanish, Russian, Greek, Chinese, Arabic, Serbian
🔌 REST API — Full CRUD with OpenAPI/Swagger docs, rate limiting, and scoped API keys
🤖 AI-Agent Ready — hosted + local MCP server (25 tools), /llms.txt, agent-guide.md, 5-tier capability API, compile+preview validation, typed error codes, ?wait=true, Idempotency-Key, run cancellation
🚀 Pipeline Templates — One-click starter templates (Stripe→Postgres, Postgres→BigQuery, CSV→DuckDB) with prefilled connection configs
🔔 Notifications — Slack, Telegram, email, and webhook alerts on run completion, plus an in-app notification center
📦 Self-Hostable — Single docker compose up — no Kubernetes required
Quick Start
Docker (recommended)
git clone https://github.com/datanika-io/datanika-core.git
cd datanika-core
cp .env.example .env
# Edit .env with your settings
docker compose up -d
App available at http://localhost:3000
Development
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"
docker compose up -d postgres redis # infrastructure only
uv run reflex run # starts on :3000 + :8000
Releases & versioning
Datanika uses 0.x SemVer with tagged releases (v0.1.0, …). While pre-1.0, breaking
changes bump the minor. There is no 1.0 yet — that will mean a committed, stable
public API contract.
Self-hosting? Pin a release instead of tracking master. master is continuously
deployed to our hosted app and moves several times a day.
git checkout v0.1.0 # source
docker pull ghcr.io/datanika-io/datanika-core:v0.1.0 # image (:latest follows master)
Every version's notes are on the Releases page.
Security advisories cite the first patched release (e.g. Patched: v0.1.0), so a pinned
tag tells you immediately whether you're affected.
The
datanika-mcpsub-package is versioned and released independently (mcp-v*tags, published to PyPI).
Why Datanika?
| Datanika | Airbyte | Fivetran | dbt Cloud | |
|---|---|---|---|---|
| Extract + Load | ✅ 36 connectors | ✅ 400+ | ✅ 500+ | ❌ |
| Transformations | ✅ dbt built-in | ❌ | ❌ (add-on) | ✅ |
| Scheduling | ✅ Cron + DAG | ✅ Basic | ✅ Basic | ✅ |
| Pipeline DAG | ✅ Visual | ❌ | ❌ | ❌ |
| Self-host | ✅ Docker | ⚠️ Needs K8s | ❌ SaaS only | ❌ SaaS only |
| Open source | ✅ AGPL-3.0 | ⚠️ ELv2 | ❌ | ❌ |
| Notifications | ✅ Slack/Telegram/Email/Webhook | ✅ | ✅ | ✅ |
| Pricing | Free forever | Free tier limited | ~$250+/mo | ~$100+/mo |
Tech Stack
| Component | Technology |
|---|---|
| Frontend | Reflex (Python → React) |
| Backend | Starlette (via Reflex) |
| Extract + Load | dlt |
| Transform | dbt-core |
| Database | PostgreSQL 16 |
| Task Queue | Celery + Redis |
| Scheduling | APScheduler |
Roadmap
- [x] 36 connectors (databases, SaaS APIs, files, streaming)
- [x] dbt transformations, tests, snapshots, packages
- [x] REST API v1 with OpenAPI/Swagger and typed per-connector inline schemas
- [x] AI-agent compatibility (
/llms.txt, agent-guide, 5-tier API, golden-path loop,?wait=true,Idempotency-Key, run cancel, MCP server) - [x] Pipeline templates (one-click setup)
- [x] In-app notification center with Slack, Telegram, Email, Webhook channels
- [x] SSO (SAML/OIDC) for Enterprise
- [x] Usage-based billing (cloud plugin)
- [x] 2,300+ tests across unit, security, and E2E (SQLite in-memory for speed)
- [x] Kubernetes Helm chart — in-tree at
deploy/helm/datanika/; installs the same image as the Compose path. Bundled Postgres/Redis are single-replica and not production-grade — point it at managed databases (see the chart README) - [ ] Data lineage visualization
AI Agent Integration
Datanika speaks MCP, so AI agents (Claude Desktop, Claude Code, Cursor, …) can browse connections, preview data, compile transformations, and monitor runs natively. 25 tools — 17 read-only, 8 write. There are two ways in.
Hosted — nothing to install. Paste this wherever your client accepts a remote MCP server and authorize in the browser:
https://app.datanika.io/mcp
OAuth 2.1, no API key to handle. Read-only unless you grant write at consent — a client that asks for nothing gets read-only, and a pasted API key stays read-only here even if its own scopes allow writes.
Local — stdio. Published on PyPI as datanika-mcp and listed on the official MCP registry as io.datanika/datanika-mcp:
# read-only by default; add --allow-write to enable the 8 write tools
uvx datanika-mcp --url https://app.datanika.io --api-key YOUR_KEY
See datanika-mcp/README.md for per-client config snippets and the full tool list, or datanika.io/docs/mcp-server for the hosted walkthrough.
Additional agent resources:
/llms.txt— discovery document/api/v1/openapi.json— OpenAPI spec with typed inline schemas/api/v1/meta/agent-tiers— 5-tier capability stack (JSON)docs/api_versioning.md— stability tiers and deprecation policy
Open-Core Strategy
Core platform is open-source (AGPL-3.0).
Cloud version adds billing, quotas, and usage metering via the datanika-cloud plugin.
Links
- 🌐 Website: datanika.io
- 🚀 Cloud Platform: app.datanika.io
- 📖 Documentation: datanika.io/docs
- 🔌 Connectors: datanika.io/connectors
- 📡 API Reference: datanika.io/docs/api
Security
Found a vulnerability? See SECURITY.md for our disclosure policy, supported versions, and reporting instructions.
Contributing
We welcome contributors and design partners. Open an issue or contact info@datanika.io.
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。