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 Airflow Token
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 srcAvailable Tools
9 toolsget_dagC
Get metadata for a single Airflow DAG.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description implies a read-only operation but does not explicitly state it is non-destructive, nor does it disclose any error behaviors, rate limits, or authorization needs. Minimal transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, concise, with no superfluous text. Essential information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite low complexity (one required param, output schema exists), the description fails to provide sufficient context for safe usage, such as authentication requirements, error handling, or expected output structure. Incomplete for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description adds no meaning to the single parameter 'dag_id' beyond its name. The description does not explain how to find or format the dag_id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'get' and resource 'metadata for a single Airflow DAG', distinguishing it from sibling 'list_dags' which lists multiple DAGs. However, it does not specify what kind of metadata is returned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance provided on when to use this tool versus alternatives like 'list_dags' or 'get_dag_run'. No mention of prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dag_runC
Get details for a single DAG run, including its trigger conf.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | ||
| dag_run_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must disclose behaviors. It only states the output includes details and trigger conf, but does not mention error handling (e.g., for missing run), idempotency, or that it's a read-only operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, efficient, no fluff. However, slightly too terse, missing important details that could be added without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no schema descriptions and no annotations, the description should provide more context. Though output schema exists, the description does not mention required inputs or any usage constraints, leaving gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description adds no meaning to the two required parameters (dag_id, dag_run_id). Their purpose is only inferred from names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets details for a single DAG run, including trigger conf. This distinguishes it from sibling tools like 'list_dag_runs' (which lists multiple) and 'get_dag' (which gets the DAG definition).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use vs alternatives. Does not mention prerequisites, context, or that this tool is for retrieving a specific run after identifying its ID.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_task_logsB
Get logs for a task instance, truncated to AIRFLOW_LOG_MAX_LINES.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | ||
| task_id | Yes | ||
| dag_run_id | Yes | ||
| try_number | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses truncation to AIRFLOW_LOG_MAX_LINES, a key behavioral detail. However, no information about permissions, side effects, or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence is efficient, but could include structured details. No fluff, but under-specification for a tool with 4 parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description is too minimal. It omits parameter explanations and usage context, leaving gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, and the description does not explain any parameter. Parameter names are non-obvious (e.g., dag_run_id), requiring the agent to infer meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it retrieves logs for a task instance and mentions truncation. It is specific and distinguishes from sibling tools which handle DAGs and runs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives or when not to use it. No context about prerequisites or typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_dag_runsC
List DAG run history for a given DAG.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| state | No | ||
| dag_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should disclose behavioral traits. It only says 'list history,' implying read-only, but does not mention pagination, default behavior, or any side effects. Minimal behavioral insight.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, which is concise, but it lacks structure and important details. It earns its place but should be expanded to include param behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema and optional parameters, the description is incomplete. It does not explain return values, filtering, or pagination, leaving gaps for effective tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the tool description provides no additional meaning for the parameters (dag_id, limit, state). The agent receives only parameter names and types from the schema, which is insufficient for correct usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists DAG run history for a given DAG, specifying the verb and resource. It distinguishes from siblings like get_dag_run (which fetches a single run) and list_dags (which lists DAGs), though it does not explicitly mention these distinctions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like get_dag_run or list_task_instances. The description lacks any contextual cues for appropriate selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_dagsA
List Airflow DAGs, optionally filtered by tag or active state.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| limit | No | ||
| offset | No | ||
| only_active | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It only states the basic action without disclosing read-only nature, performance implications, pagination behavior, or potential rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise and front-loaded with the core action and optional filters. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Output schema exists, so return values are covered. However, missing context on pagination (limit/offset), sorting, and full filtering capabilities leaves gaps for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. It mentions 'tag or active state' which maps to tags and only_active, but does not explain limit, offset, or parameter formats. Adds some value but insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists DAGs with optional filtering by tag or active state. It distinguishes from siblings like get_dag (single DAG) and list_dag_runs (runs).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this vs alternatives. While implied, it does not mention that get_dag is for a specific DAG or that list_dag_runs is for runs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_task_instancesB
List task instances and their state for a given DAG run.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | ||
| dag_run_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but only states core function. It does not disclose behavioral traits such as read-only nature, pagination, rate limits, or any side effects. For a listing tool, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused sentence with no redundant information. It is appropriately short for a simple list operation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and presence of output schema, the description is minimally adequate. However, the lack of annotations and parameter descriptions leaves gaps in behavioral understanding. Additional context on output format or state values would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. It only loosely ties parameters to 'for a given DAG run', implying 'dag_id' and 'dag_run_id' but adds no specific detail beyond the schema titles. Minimal value added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'list' and the resource 'task instances' with a specific scope 'for a given DAG run'. It distinctly separates this tool from siblings like 'list_dag_runs' (different resource) and 'get_task_logs' (different operation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when needing task instances for a specific DAG run, but it does not provide explicit when/when-not guidance or mention alternatives like 'get_task_logs' for logs. The context from sibling tool names partially compensates.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pause_dagAIdempotent
Pause a DAG. Reversible, but affects the shared scheduler.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide idempotentHint=true and destructiveHint=false. The description adds beyond that: it clarifies the operation is reversible and highlights that it affects the shared scheduler, which is a important behavioral trait not covered by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences, no redundancy. Every word adds value, stating the core action, reversibility, and a key side effect.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one required param and an output schema (not shown), the description covers the essential purpose and a key behavioral note. It does not explain return values, but those are covered by the output schema. Minor gap: no mention of prerequisites or error conditions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% (the description does not mention the required 'dag_id' parameter). With low coverage, the description should compensate but fails to add any meaning or guidance about the parameter beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Pause') and resource ('a DAG'), with the additional note of reversibility. It is distinct from sibling tools like unpause_dag (reverse operation) and trigger_dag_run (different action).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context ('Reversible, but affects the shared scheduler'), implying when to use it and noting a side effect. However, it lacks explicit when-not-to-use or direct comparison to siblings beyond the reversal hint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trigger_dag_runBDestructive
Trigger a new DAG run. Sensitive: creates a new, irreversible execution.
| Name | Required | Description | Default |
|---|---|---|---|
| conf | No | ||
| dag_id | Yes | ||
| logical_date | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already set destructiveHint=true and readOnlyHint=false. The description adds 'irreversible execution,' which slightly amplifies the destructive nature but doesn't disclose new behavioral traits like auth requirements or potential failures. It adds marginal value beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences (12 words total) with no wasted text. The key purpose and sensitivity warning are front-loaded. Ideal conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the description states the primary action and notes irreversibility, it lacks crucial context for a destructive tool: prerequisites (e.g., dag_id must reference an existing DAG), what triggers the output schema, or side effects on existing runs. The presence of an output schema mitigates some need, but more operational context would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not mention any of the three parameters (dag_id, conf, logical_date). With 0% schema description coverage, the description fails to provide any semantic meaning for the parameters, leaving the agent to rely solely on the schema's bare definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Trigger' and resource 'a new DAG run', distinguishing it from sibling tools like get_dag_run (retrieve) and list_dag_runs (list). The additional note 'Sensitive: creates a new, irreversible execution' reinforces the action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. Sibling tools are listed but not contrasted. For example, no mention that this is for starting a new run while get_dag_run is for retrieving an existing one.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
unpause_dagBIdempotent
Resume a paused DAG.
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover key aspects (modification, idempotency, non-destructive). The description adds no additional behavioral context beyond implying state change. It fails to explain what 'resume' means operationally (e.g., enabling scheduling, affecting next run). Adequate but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (single sentence) and front-loaded with the key action. However, it is so brief that it sacrifices necessary detail for pure brevity. Still, it avoids verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and an output schema, the description still lacks completeness. It does not clarify the scope of 'resume' (e.g., does it only unpause or also trigger a run?), error handling, or prerequisites. The agent is left to guess operational semantics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, yet the description does not mention the 'dag_id' parameter or its format. The description adds no value beyond the schema's structural definition, leaving the agent with no guidance on what to pass.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verb 'Resume' (synonymous with unpause) and clearly identifies the resource as a DAG. It directly contrasts with sibling tool 'pause_dag' and avoids ambiguity with 'trigger_dag_run'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives (e.g., when a DAG is already running vs paused), no prerequisites, and no mention of error scenarios or idempotency implications. The description is purely functional.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
9 tool updates
v0.1.0- First observed
get_dag - First observed
get_dag_run - First observed
get_task_logs - First observed
list_dag_runs - First observed
list_dags - First observed
list_task_instances - First observed
pause_dag - First observed
trigger_dag_run - First observed
unpause_dag
TDQS
Scored across 9 tools
Each tool targets a distinct entity or action: DAG metadata, DAG run details, task logs, listing operations, and state changes (pause, unpause, trigger). No overlapping purposes.
All names follow a consistent verb_noun pattern with underscores (e.g., get_dag, list_dags, trigger_dag_run). Verbs are clear and nouns precisely identify the resource.
9 tools is appropriate for an Airflow MCP server, covering core operations without redundancy. The count is well-scoped for the domain.
Covers essential DAG, DAG run, and task instance operations. Minor gaps like clearing task instances or updating DAG configuration are missing but not critical for typical monitoring and triggering workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol Server that enables LLMs to interact with and execute REST API calls through natural language prompts, supporting GET/PUT/POST/PATCH operations on configured APIs.6Apache 2.0
- AlicenseCqualityDmaintenanceA Model Context Protocol server that wraps Apache Airflow's REST API with Bearer token authentication support, enabling AI assistants to interact with Airflow deployments including Astronomer Cloud.66MIT

astro-airflow-mcpofficial
AlicenseAqualityFmaintenanceAn MCP server that enables AI assistants to interact with Apache Airflow's REST API for DAG management, task monitoring, and system diagnostics. It provides comprehensive tools for triggering workflows, retrieving logs, and inspecting system health across Airflow 2.x and 3.x versions.3113Apache 2.0- AlicenseNot gradedqualityDmaintenanceEnables interaction with Apache Airflow through the Model Context Protocol, allowing users to manage DAGs, task instances, variables, connections, pools, XComs, and datasets.MIT