Airflow MCP
A Model Context Protocol server that exposes Apache Airflow's REST API to AI agents, enabling them to inspect and operate on DAGs, DAG runs, task instances, and logs.
README
Airflow MCP
A Model Context Protocol server that exposes Apache Airflow's REST API to AI agents (Claude Code, Claude Desktop, etc.), so they can inspect and operate on DAGs, DAG runs, task instances and logs.
The server is general-purpose: point it at any Airflow 2.x/3.x instance via AIRFLOW_BASE_URL. It has no knowledge of any specific project's DAGs, and does not edit DAG files or manage Airflow users/roles/pools/connections.
Tools
Read-only
| Tool | Description | Parameters |
|---|---|---|
list_dags |
List DAGs, optionally filtered by tag or active state | tags?, only_active?, limit?, offset? |
get_dag |
Get metadata for a single DAG | dag_id |
list_dag_runs |
List DAG run history | dag_id, state?, limit? |
get_dag_run |
Get details for a single DAG run, including trigger conf | dag_id, dag_run_id |
list_task_instances |
List task instances and their state for a DAG run | dag_id, dag_run_id |
get_task_logs |
Get logs for a task instance, truncated to AIRFLOW_LOG_MAX_LINES |
dag_id, dag_run_id, task_id, try_number? |
Write (sensitive — annotated so MCP clients require confirmation)
| Tool | Description | Parameters |
|---|---|---|
trigger_dag_run |
Trigger a new DAG run (destructive, non-idempotent) | dag_id, conf?, logical_date? |
pause_dag |
Pause a DAG (idempotent) | dag_id |
unpause_dag |
Resume a paused DAG (idempotent) | dag_id |
Requirements
- Python >= 3.12
- uv
- An Apache Airflow instance reachable over HTTP, with a user that has at least
Viewerrole (Opif you need the write tools)
Least privilege
Use a dedicated Airflow user for this server, scoped to the minimum role it needs:
Vieweris enough if you only register the read-only tools.Opis required if you also registertrigger_dag_run,pause_dagorunpause_dag.- Never point this server at an
Adminaccount unless you have a specific reason to.
Quickstart
./install.sh
Detects whether you have Docker or uv installed, sets up .env (from .env.example, if missing), builds the image or syncs dependencies accordingly, and prints the .mcp.json snippet to register the server.
Setup
uv sync --group dev
cp .env.example .env
Fill in .env with your Airflow instance's URL and credentials.
Docker
No local Python/uv needed — build once, run anywhere Docker runs:
docker build -t mcp-airflow .
cp .env.example .env # fill in your Airflow credentials
Run in stdio mode (default, for MCP clients that spawn the process):
docker run -i --rm --env-file .env mcp-airflow
Run in streamable-http mode (standalone service, listens on :8000):
docker run --rm -p 8000:8000 --env-file .env -e MCP_TRANSPORT=streamable-http mcp-airflow
Registering with an MCP client
stdio (recommended for local development)
{
"mcpServers": {
"airflow": {
"command": "uv",
"args": ["run", "mcp-airflow"],
"env": {
"AIRFLOW_BASE_URL": "http://localhost:8080",
"AIRFLOW_AUTH_MODE": "basic",
"AIRFLOW_USERNAME": "airflow",
"AIRFLOW_PASSWORD": "airflow"
}
}
}
}
stdio via Docker
{
"mcpServers": {
"airflow": {
"command": "docker",
"args": ["run", "-i", "--rm", "--env-file", ".env", "mcp-airflow"]
}
}
}
streamable-http (server running as a standalone process)
Start the server with MCP_TRANSPORT=streamable-http uv run mcp-airflow (or the Docker command above), then register:
{
"mcpServers": {
"airflow": {
"url": "http://localhost:8000/mcp"
}
}
}
Development
uv run pytest
uv run ruff check .
uv run mypy src
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.