Skip to main content
Glama

list_providers

Lists all installed provider packages in Apache Airflow to manage integrations and dependencies for workflow automation.

Instructions

[Tool Role]: Lists all provider packages installed in the Airflow system.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'list_providers' tool. It makes a GET request to the Airflow API endpoint '/providers' to fetch and return the list of installed provider packages.
    @mcp.tool() async def list_providers() -> Dict[str, Any]: """[Tool Role]: Lists all provider packages installed in the Airflow system.""" resp = await airflow_request("GET", "/providers") resp.raise_for_status() return resp.json()
  • Registration call for common tools (including list_providers) in the v1 API tools module. Executed within register_tools(mcp) to add the tool to the MCP server.
    common_tools.register_common_tools(mcp)
  • Registration call for common tools (including list_providers) in the v2 API tools module. Executed within register_tools(mcp) to add the tool to the MCP server.
    common_tools.register_common_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