list_pipelines
Retrieve and display Delta Live Tables pipelines from Databricks to monitor data processing workflows and track pipeline status.
Instructions
List Delta Live Tables Pipelines
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Implementation Reference
- tools/pipelines.py:9-14 (handler)The handler implementation for the list_pipelines MCP tool. It uses the workspace client to retrieve pipelines and returns them as a list of dictionaries.
@mcp.tool def list_pipelines(ctx: Context, limit: int = 20) -> List[Dict[str, Any]]: """List Delta Live Tables Pipelines""" w = get_workspace_client() pipes = w.pipelines.list_pipelines(max_results=limit) return [p.as_dict() for p in pipes]