Databricks Logo
MCP Logo

Custom Model Context Protocol Server on Databricks Apps

Your custom MCP server is up and running on Databricks Apps.

Connect to the Server

Connection Details

Server URL
https://your.app.url.databricksapps.com
Transport
Streamable HTTP
Example Connection (Python)

from databricks.sdk import WorkspaceClient
from databricks_mcp import DatabricksMCPClient

# Initialize the Databricks Workspace client
ws_client = WorkspaceClient(
    host="databricks-host",
    token="exactly-scoped-OAuth-token",
)

# Initialize the MCP client with your app’s MCP endpoint
mcp_client = DatabricksMCPClient(
    server_url='databricks-app-url',
    workspace_client=ws_client,
)

# List available MCP tools
print(mcp_client.list_tools())

                                
Or use your favourite tool
You can also connect using tools like Claude, MCP Inspector, or any other compatible client.

Documentation

Learn more about MCP on Databricks Apps and how to deploy your own server.

Custom MCP servers on Databricks Apps