Airflow MCP
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, optionally filtered by tag or active state |
|
| Get metadata for a single DAG |
|
| List DAG run history |
|
| Get details for a single DAG run, including trigger conf |
|
| List task instances and their state for a DAG run |
|
| Get logs for a task instance, truncated to |
|
Write (sensitive — annotated so MCP clients require confirmation)
Tool | Description | Parameters |
| Trigger a new DAG run (destructive, non-idempotent) |
|
| Pause a DAG (idempotent) |
|
| Resume a paused DAG (idempotent) |
|
Requirements
Python >= 3.12
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.shDetects 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 .envFill 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 credentialsRun in stdio mode (default, for MCP clients that spawn the process):
docker run -i --rm --env-file .env mcp-airflowRun in streamable-http mode (standalone service, listens on :8000):
docker run --rm -p 8000:8000 --env-file .env -e MCP_TRANSPORT=streamable-http mcp-airflowRegistering 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