list_pipeline_updates
Retrieve the update history for a Databricks pipeline to monitor changes and track modifications over time.
Instructions
List pipeline update history
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pipeline_id | Yes | ||
| limit | No |
Implementation Reference
- tools/pipelines.py:24-29 (handler)The handler implementation for the list_pipeline_updates tool.
@mcp.tool def list_pipeline_updates(ctx: Context, pipeline_id: str, limit: int = 10) -> List[Dict[str, Any]]: """List pipeline update history""" w = get_workspace_client() updates = w.pipelines.list_pipeline_events(pipeline_id=pipeline_id, max_results=limit) return [u.as_dict() for u in updates]