Skip to main content
Glama
ChrisChoTW

databricks-mcp

by ChrisChoTW

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
NameRequiredDescriptionDefault
pipeline_idYes
limitNo

Implementation Reference

  • 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]

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/ChrisChoTW/databricks-mcp'

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