get_pipeline
Retrieve the current status of a Databricks pipeline to monitor its execution progress and identify any issues.
Instructions
Get pipeline status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pipeline_id | Yes |
Implementation Reference
- tools/pipelines.py:17-21 (handler)The handler function that executes the `get_pipeline` tool logic, interacting with the workspace client to retrieve pipeline details.
@mcp.tool def get_pipeline(ctx: Context, pipeline_id: str) -> Dict[str, Any]: """Get pipeline status""" w = get_workspace_client() return w.pipelines.get(pipeline_id=pipeline_id).as_dict()