airflow for VS Code
io.github.us-all/airflow
Airflow MCP — list DAGs/runs/task instances, tail logs, trigger and clear (write-gated)
client:VS Code
transport:stdio
runtime:npm
Install airflow in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "airflow-api-url",
"description": "AIRFLOW_API_URL",
"password": true
},
{
"type": "promptString",
"id": "airflow-username",
"description": "AIRFLOW_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "airflow-password",
"description": "AIRFLOW_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "airflow-allow-write",
"description": "AIRFLOW_ALLOW_WRITE",
"password": true
},
{
"type": "promptString",
"id": "airflow-tools",
"description": "AIRFLOW_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "airflow-disable",
"description": "AIRFLOW_DISABLE",
"password": true
}
],
"servers": {
"airflow": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@us-all/airflow-mcp"
],
"env": {
"AIRFLOW_API_URL": "${input:airflow-api-url}",
"AIRFLOW_USERNAME": "${input:airflow-username}",
"AIRFLOW_PASSWORD": "${input:airflow-password}",
"AIRFLOW_ALLOW_WRITE": "${input:airflow-allow-write}",
"AIRFLOW_TOOLS": "${input:airflow-tools}",
"AIRFLOW_DISABLE": "${input:airflow-disable}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs