Skip to main content
Glama
ChrisChoTW

databricks-mcp

by ChrisChoTW

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

Implementation Reference

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

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