get_provider
Retrieve details of a specific provider package in Apache Airflow to inspect its configuration and capabilities for cluster management.
Instructions
[Tool Role]: Gets details of a specific provider package.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider_name | Yes |
Implementation Reference
- The async handler function for the 'get_provider' tool, decorated with @mcp.tool() for registration. It fetches provider details from the Airflow API endpoint /providers/{provider_name}.async def get_provider(provider_name: str) -> Dict[str, Any]: """[Tool Role]: Gets details of a specific provider package.""" resp = await airflow_request("GET", f"/providers/{provider_name}") resp.raise_for_status() return resp.json()