Skip to content
MCP-Bridge
Finance & Payments

Airflow API (Stable) MCP Config

# 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

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/apache-org.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/apache-org.json to fetch programmatically.

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

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/apache-org.json

Environment Variables

AIRFLOW_API__STABLE__API_KEY

Replace your_airflow_api__stable__api_key with your actual 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