Skip to main content
Glama

Databricks MCP Server

""" Simple script to show clusters from Databricks """ import asyncio import json import sys from src.api import clusters async def show_all_clusters(): """Show all clusters in the Databricks workspace.""" print("Fetching clusters from Databricks...") try: result = await clusters.list_clusters() print("\nClusters found:") print(json.dumps(result, indent=2)) return result except Exception as e: print(f"Error listing clusters: {e}") return None if __name__ == "__main__": asyncio.run(show_all_clusters())

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

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