databricks-sql-mcp
Enables AI assistants to execute SQL queries and explore databases, tables, and catalogs on Databricks using Unity Catalog.
README
Databricks SQL MCP Server
A Model Context Protocol (MCP) server that lets AI assistants like Claude execute SQL queries on Databricks. Claude launches the server as a Docker container and communicates over stdin/stdout using the MCP stdio transport.
Features
Core Tools:
execute_sql- Run any SQL query against a Databricks SQL Warehouselist_databases- List databases/schemas in the default cataloglist_tables- List tables in a specific databasedescribe_table- Show column names, types, and comments for a table
Unity Catalog Tools:
list_catalogs- List all catalogs in the Unity Catalog metastorelist_schemas- List schemas within a specific cataloglist_tables_full- List tables using full 3-part naming (catalog.schema.table)describe_table_full- Describe a table using its full catalog path
Unity Catalog Hierarchy
CATALOG (e.g., analytics)
└── SCHEMA/DATABASE (e.g., silver)
└── TABLE (e.g., customers)
Fully qualified name: catalog.schema.table (e.g., analytics.silver.customers)
Prerequisites
- Docker installed and running
- Databricks workspace access with a SQL Warehouse
- Databricks personal access token
- Claude Desktop or Claude Code (CLI)
Getting Your Databricks Credentials
1. Databricks Host URL
Your workspace URL. The format depends on your cloud provider:
| Cloud | Example URL |
|---|---|
| Azure | https://adb-1234567890.azuredatabricks.net |
| AWS | https://my-workspace.cloud.databricks.com |
| GCP | https://my-workspace.gcp.databricks.com |
2. Personal Access Token
- Open your Databricks workspace
- Click your username (top-right)
- Go to User Settings > Developer > Access tokens
- Click Generate new token
- Copy the token (starts with
dapi...)
3. SQL Warehouse ID
- Go to SQL Warehouses in Databricks
- Click on a warehouse
- Copy the warehouse ID from the URL:
/sql/warehouses/<this-id>
Quick Install (Recommended)
The install scripts pull the Docker image, prompt for your Databricks credentials, and register the MCP server with Claude using the Claude Code CLI.
Mac / Linux
curl -fsSL https://raw.githubusercontent.com/benguy1000/databricks-sql-mcp/master/install.sh | bash
Or clone the repo first:
git clone https://github.com/benguy1000/databricks-sql-mcp.git
cd databricks-sql-mcp
chmod +x install.sh
./install.sh
Windows (PowerShell)
git clone https://github.com/benguy1000/databricks-sql-mcp.git
cd databricks-sql-mcp
.\install.bat
After running the installer, restart Claude Desktop (or start a new Claude Code session) and you're ready to go.
Manual Installation
If you prefer to set things up manually, or if the quick install doesn't work for your setup, follow the steps below.
Running with Docker
Pull the Image from Docker Hub
docker pull bkeeleygib/databricks-sql-mcp:latest
Or build it yourself:
docker build -t bkeeleygib/databricks-sql-mcp .
Run with Environment Variables
The -i flag is required -- MCP uses stdin/stdout for communication between Claude and the server.
docker run -i --rm \
-e DATABRICKS_HOST="https://your-workspace.azuredatabricks.net" \
-e DATABRICKS_TOKEN="dapi1234567890abcdef" \
-e DATABRICKS_WAREHOUSE_ID="abc123def456" \
bkeeleygib/databricks-sql-mcp:latest
Run with .env File
Create a .env file with your credentials (see .env.example):
DATABRICKS_HOST=https://your-workspace.azuredatabricks.net
DATABRICKS_TOKEN=dapi1234567890abcdef
DATABRICKS_WAREHOUSE_ID=abc123def456
Then run:
docker run -i --rm --env-file .env bkeeleygib/databricks-sql-mcp:latest
Configuring Claude Desktop
Add the server to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"databricks-sql": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "DATABRICKS_HOST=https://your-workspace.azuredatabricks.net",
"-e", "DATABRICKS_TOKEN=dapi1234567890abcdef",
"-e", "DATABRICKS_WAREHOUSE_ID=abc123def456",
"bkeeleygib/databricks-sql-mcp:latest"
]
}
}
}
Important: Replace the placeholder values with your actual credentials, then restart Claude Desktop.
Configuring Claude Code (CLI)
Use the Claude Code CLI to register the server directly:
claude mcp add-json databricks-sql '{
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "DATABRICKS_HOST=https://your-workspace.azuredatabricks.net",
"-e", "DATABRICKS_TOKEN=dapi1234567890abcdef",
"-e", "DATABRICKS_WAREHOUSE_ID=abc123def456",
"bkeeleygib/databricks-sql-mcp:latest"
]
}'
Example Queries
Once connected, you can ask Claude:
Browsing:
- "List all catalogs in my Unity Catalog"
- "Show me the schemas in the
analyticscatalog" - "What tables are in
analytics.silver?" - "Describe the schema of
analytics.silver.customers"
Querying:
- "Run:
SELECT * FROM analytics.silver.customers LIMIT 10" - "Show me the top 5 most expensive items"
- "What's the total revenue by category?"
Security Notes
Never commit your .env file or credentials to Git!
- The
.envfile is listed in.gitignore - Each user needs their own Databricks personal access token
- The Docker image does not contain any credentials
- Credentials are passed at runtime via environment variables
Development
Local Development (without Docker)
Requires Python 3.11+.
# Install dependencies
pip install -r requirements.txt
# Create .env file with your credentials
cp .env.example .env
# Edit .env with your values
# Run the server
python server.py
Project Structure
server.py # MCP server implementation (FastMCP + Databricks SDK)
requirements.txt # Python dependencies (pinned to major versions)
Dockerfile # Docker image definition
install.sh # Quick installer for Mac/Linux
install.bat # Quick installer for Windows
.env.example # Template for environment variables
Troubleshooting
"Error: DATABRICKS_WAREHOUSE_ID not set"
- Make sure you passed all three environment variables
- Check that your
.envfile has values forDATABRICKS_HOST,DATABRICKS_TOKEN, andDATABRICKS_WAREHOUSE_ID
"Query failed: ..."
- Verify your credentials are correct
- Check that the SQL Warehouse is running (it may be auto-suspended)
- Ensure you have permissions to access the requested data
"Server disconnected"
- Restart Claude Desktop or start a new Claude Code session
- Verify Docker is running:
docker info - Check that the container starts successfully:
docker run -i --rm --env-file .env bkeeleygib/databricks-sql-mcp:latest
"Tables show as false"
- This bug has been fixed in the latest version
- Pull the latest image:
docker pull bkeeleygib/databricks-sql-mcp:latest
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。