A Model Completion Protocol (MCP) server for Databricks
Project description
Markov Databricks MCP
A Model Completion Protocol (MCP) server for Databricks that provides access to Databricks functionality via the MCP protocol. This allows LLM-powered tools to interact with Databricks clusters, jobs, notebooks, and more.
Install Databricks MCP in Cursor
This project is maintained by Olivier Debeuf De Rijcker olivier@markov.bot.
Credit for the initial version goes to @JustTryAI.
Features
- MCP Protocol Support: Implements the MCP protocol to allow LLMs to interact with Databricks
- Databricks API Integration: Provides access to Databricks REST API functionality
- Tool Registration: Exposes Databricks functionality as MCP tools
- Async Support: Built with asyncio for efficient operation
Available Tools
The Databricks MCP Server exposes the following tools:
Cluster Management
- list_clusters: List all Databricks clusters
- create_cluster: Create a new Databricks cluster
- terminate_cluster: Terminate a Databricks cluster
- get_cluster: Get information about a specific Databricks cluster
- start_cluster: Start a terminated Databricks cluster
Job Management
- list_jobs: List all Databricks jobs
- run_job: Run a Databricks job
Workspace Files
- list_notebooks: List notebooks in a workspace directory
- export_notebook: Export a notebook from the workspace
- get_workspace_file_content: Retrieve content of any workspace file (JSON, notebooks, scripts, etc.)
- get_workspace_file_info: Get metadata about workspace files
File System
- list_files: List files and directories in a DBFS path
SQL Execution
- execute_sql: Execute a SQL statement (warehouse_id optional if DATABRICKS_WAREHOUSE_ID env var is set)
Installation
Quick Install (Recommended)
Click the button above or use this link to install with one click:
→ Install Databricks MCP in Cursor ←
This will automatically install the MCP server using uvx and configure it in Cursor. You'll need to set these environment variables:
DATABRICKS_HOST- Your Databricks workspace URLDATABRICKS_TOKEN- Your Databricks personal access tokenDATABRICKS_WAREHOUSE_ID- (Optional) Your default SQL warehouse ID
Manual Installation
Prerequisites
- Python 3.10 or higher
uvpackage manager (recommended for MCP servers)
Setup
-
Install
uvif you don't have it already:# MacOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh # Windows (in PowerShell) irm https://astral.sh/uv/install.ps1 | iex
Restart your terminal after installation.
-
Clone the repository:
git clone https://github.com/markov-kernel/databricks-mcp.git cd databricks-mcp
-
Run the setup script:
# Linux/Mac ./scripts/setup.sh # Windows (PowerShell) .\scripts\setup.ps1
The setup script will:
- Install
uvif not already installed - Create a virtual environment
- Install all project dependencies
- Verify the installation works
Alternative manual setup:
# Create and activate virtual environment uv venv # On Windows .\.venv\Scripts\activate # On Linux/Mac source .venv/bin/activate # Install dependencies in development mode uv pip install -e . # Install development dependencies uv pip install -e ".[dev]"
- Install
-
Set up environment variables:
# Required variables # Windows set DATABRICKS_HOST=https://your-databricks-instance.azuredatabricks.net set DATABRICKS_TOKEN=your-personal-access-token # Linux/Mac export DATABRICKS_HOST=https://your-databricks-instance.azuredatabricks.net export DATABRICKS_TOKEN=your-personal-access-token # Optional: Set default SQL warehouse (makes warehouse_id optional in execute_sql) export DATABRICKS_WAREHOUSE_ID=sql_warehouse_12345
You can also create an
.envfile based on the.env.exampletemplate.
Running the MCP Server
Standalone
To start the MCP server directly for testing or development, run:
# Activate your virtual environment if not already active
source .venv/bin/activate
# Run the start script (handles finding env vars from .env if needed)
./scripts/start_mcp_server.sh
This is useful for seeing direct output and logs.
Integrating with AI Clients
To use this server with AI clients like Cursor or Claude CLI, you need to register it.
Cursor Setup
-
Open your global MCP configuration file located at
~/.cursor/mcp.json(create it if it doesn't exist). -
Add the following entry within the
mcpServersobject, replacing placeholders with your actual values and ensuring the path tostart_mcp_server.shis correct:{ "mcpServers": { // ... other servers ... "databricks-mcp-local": { "command": "/absolute/path/to/your/project/databricks-mcp-server/start_mcp_server.sh", "args": [], "env": { "DATABRICKS_HOST": "https://your-databricks-instance.azuredatabricks.net", "DATABRICKS_TOKEN": "dapiXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "DATABRICKS_WAREHOUSE_ID": "sql_warehouse_12345", "RUNNING_VIA_CURSOR_MCP": "true" } } // ... other servers ... } }
-
Important: Replace
/absolute/path/to/your/project/databricks-mcp-server/with the actual absolute path to this project directory on your machine. -
Replace the
DATABRICKS_HOSTandDATABRICKS_TOKENvalues with your credentials. -
Save the file and restart Cursor.
-
You can now invoke tools using
databricks-mcp-local:<tool_name>(e.g.,databricks-mcp-local:list_jobs).
Claude CLI Setup
-
Use the
claude mcp addcommand to register the server. Provide your credentials using the-eflag for environment variables and point the command to thestart_mcp_server.shscript using--followed by the absolute path:claude mcp add databricks-mcp-local \ -s user \ -e DATABRICKS_HOST="https://your-databricks-instance.azuredatabricks.net" \ -e DATABRICKS_TOKEN="dapiXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" \ -e DATABRICKS_WAREHOUSE_ID="sql_warehouse_12345" \ -- /absolute/path/to/your/project/databricks-mcp-server/start_mcp_server.sh
-
Important: Replace
/absolute/path/to/your/project/databricks-mcp-server/with the actual absolute path to this project directory on your machine. -
Replace the
DATABRICKS_HOSTandDATABRICKS_TOKENvalues with your credentials. -
You can now invoke tools using
databricks-mcp-local:<tool_name>in your Claude interactions.
Querying Databricks Resources
The repository includes utility scripts to quickly view Databricks resources:
# View all clusters
uv run scripts/show_clusters.py
# View all notebooks
uv run scripts/show_notebooks.py
Usage Examples
SQL Execution with Default Warehouse
# With DATABRICKS_WAREHOUSE_ID set, warehouse_id is optional
await session.call_tool("execute_sql", {
"statement": "SELECT * FROM my_table LIMIT 10"
})
# You can still override the default warehouse
await session.call_tool("execute_sql", {
"statement": "SELECT * FROM my_table LIMIT 10",
"warehouse_id": "sql_warehouse_specific"
})
Workspace File Content Retrieval
# Get JSON file content from workspace
await session.call_tool("get_workspace_file_content", {
"workspace_path": "/Users/user@domain.com/config/settings.json"
})
# Get notebook content in Jupyter format
await session.call_tool("get_workspace_file_content", {
"workspace_path": "/Users/user@domain.com/my_notebook",
"format": "JUPYTER"
})
# Get file metadata without downloading content
await session.call_tool("get_workspace_file_info", {
"workspace_path": "/Users/user@domain.com/large_file.py"
})
Project Structure
databricks-mcp-server/
├── src/ # Source code
│ ├── __init__.py # Makes src a package
│ ├── __main__.py # Main entry point for the package
│ ├── main.py # Entry point for the MCP server
│ ├── api/ # Databricks API clients
│ ├── core/ # Core functionality
│ ├── server/ # Server implementation
│ │ ├── databricks_mcp_server.py # Main MCP server
│ │ └── app.py # FastAPI app for tests
│ └── cli/ # Command-line interface
├── tests/ # Test directory
├── scripts/ # Helper scripts
│ ├── start_mcp_server.ps1 # Server startup script (Windows)
│ ├── run_tests.ps1 # Test runner script
│ ├── show_clusters.py # Script to show clusters
│ └── show_notebooks.py # Script to show notebooks
├── examples/ # Example usage
├── docs/ # Documentation
└── pyproject.toml # Project configuration
See project_structure.md for a more detailed view of the project structure.
Development
Code Standards
- Python code follows PEP 8 style guide with a maximum line length of 100 characters
- Use 4 spaces for indentation (no tabs)
- Use double quotes for strings
- All classes, methods, and functions should have Google-style docstrings
- Type hints are required for all code except tests
Linting
The project uses the following linting tools:
# Run all linters
uv run pylint src/ tests/
uv run flake8 src/ tests/
uv run mypy src/
Testing
The project uses pytest for testing. To run the tests:
# Run all tests with our convenient script
.\scripts\run_tests.ps1
# Run with coverage report
.\scripts\run_tests.ps1 -Coverage
# Run specific tests with verbose output
.\scripts\run_tests.ps1 -Verbose -Coverage tests/test_clusters.py
You can also run the tests directly with pytest:
# Run all tests
uv run pytest tests/
# Run with coverage report
uv run pytest --cov=src tests/ --cov-report=term-missing
A minimum code coverage of 80% is the goal for the project.
Documentation
- API documentation is generated using Sphinx and can be found in the
docs/apidirectory - All code includes Google-style docstrings
- See the
examples/directory for usage examples
Examples
Check the examples/ directory for usage examples. To run examples:
# Run example scripts with uv
uv run examples/direct_usage.py
uv run examples/mcp_client_usage.py
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Ensure your code follows the project's coding standards
- Add tests for any new functionality
- Update documentation as necessary
- Verify all tests pass before submitting
License
This project is licensed under the MIT License - see the LICENSE file for details.
About
A Model Completion Protocol (MCP) server for interacting with Databricks services. Maintained by markov.bot.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file databricks_mcp_server-0.1.1.tar.gz.
File metadata
- Download URL: databricks_mcp_server-0.1.1.tar.gz
- Upload date:
- Size: 40.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05ea191924f5efd0e0991ea33a8b75ed9599664af3ab7f79c466688ea10a55d5
|
|
| MD5 |
052ba2d30c9fcd624558876cf03980be
|
|
| BLAKE2b-256 |
bce0b90f5a27266510ae83793ce2f5b9d52c1023a35cd40613f233de519eac96
|
File details
Details for the file databricks_mcp_server-0.1.1-py3-none-any.whl.
File metadata
- Download URL: databricks_mcp_server-0.1.1-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9c4195e9a768af046a407306ed6686173db7ab83338bb19e1d1f543860b4b8b
|
|
| MD5 |
3526ed14736f1ea51e28f7bcbd19d173
|
|
| BLAKE2b-256 |
31fae131937dcbf51c772395347b344e2436dcb1b474328e9f1e68a59d85bd88
|