Airflow MCP
Provides tools for managing Apache Airflow DAGs, DAG runs, task instances, and logs via the Airflow REST API.
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., "@Airflow MCPlist the last 5 runs of DAG 'etl_pipeline'"
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.
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) |
|
Related MCP server: MCP Server for n8n Integration
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 srcMaintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/zamax14/airflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server