Skip to main content
Glama

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
NameRequiredDescriptionDefault

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()
  • Registration of common tools (including list_plugins) for Airflow API v1 by calling register_common_tools.
    common_tools.register_common_tools(mcp)
  • Registration of common tools (including list_plugins) for Airflow API v2 by calling register_common_tools.
    common_tools.register_common_tools(mcp)
  • Top-level registration call for v1 tools in the main MCP server initialization.
    v1_tools.register_tools(mcp)
  • Top-level registration call for v2 tools in the main MCP server initialization.
    v2_tools.register_tools(mcp)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/call518/MCP-Airflow-API'

If you have feedback or need assistance with the MCP directory API, please join our Discord server