list_plugins
Retrieve all installed plugins in Apache Airflow to inspect available extensions and integrations for workflow management.
Instructions
[Tool Role]: Lists all installed plugins in the Airflow system.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The core handler function for the 'list_plugins' tool. It makes an HTTP GET request to the Airflow '/plugins' API endpoint and returns the JSON response containing all installed plugins.@mcp.tool() async def list_plugins() -> Dict[str, Any]: """[Tool Role]: Lists all installed plugins in the Airflow system.""" resp = await airflow_request("GET", "/plugins") resp.raise_for_status() return resp.json()
- src/mcp_airflow_api/tools/v1_tools.py:23-23 (registration)Registration of common tools (including list_plugins) for Airflow API v1 by calling register_common_tools.common_tools.register_common_tools(mcp)
- src/mcp_airflow_api/tools/v2_tools.py:24-24 (registration)Registration of common tools (including list_plugins) for Airflow API v2 by calling register_common_tools.common_tools.register_common_tools(mcp)
- src/mcp_airflow_api/mcp_main.py:385-385 (registration)Top-level registration call for v1 tools in the main MCP server initialization.v1_tools.register_tools(mcp)
- src/mcp_airflow_api/mcp_main.py:389-389 (registration)Top-level registration call for v2 tools in the main MCP server initialization.v2_tools.register_tools(mcp)