Your custom MCP server is up and running on Databricks Apps.
https://your.app.url.databricksapps.com
Streamable HTTP
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())
Learn more about MCP on Databricks Apps and how to deploy your own server.
Custom MCP servers on Databricks Apps