Skip to content
MCP-Bridge
Finance & PaymentsAuto-generated

Airflow API (Stable) MCP Server

# Overview To facilitate management, Apache Airflow supports a range of REST API endpoints across its objects. This section provides an overview of the API design, methods, and supported use cases. Most of the endpoints accept `JSON` as input and return `JSON` responses. This means that you must u

Quick Setup

Transport: STDIO

Command: npx -y @mcp/apache-org-airflow

Environment Variables

AIRFLOW_API__STABLE__API_KEY

Example: your_airflow_api__stable__api_key

MCP Server Configuration

Add this to your claude_desktop_config.json or Cursor MCP settings.

{
  "mcpServers": {
    "apache-org-airflow": {
      "command": "npx",
      "args": ["-y","@mcp/apache-org-airflow"],
      "env": {
      "AIRFLOW_API__STABLE__API_KEY": "your_airflow_api__stable__api_key"
}
    }
  }
}

Endpoints

GET/config

Get current configuration

GET/connections

List connections

POST/connections

Create a connection

POST/connections/test

Test a connection

GET/connections/{connection_id}

Get a connection

DELETE/connections/{connection_id}

Delete a connection

PATCH/connections/{connection_id}

Update a connection

GET/dagSources/{file_token}

Get a source code

GET/dagWarnings

List dag warnings

GET/dags

List DAGs