I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

mcp-databricks-server
Servidor de Databricks MCP
3 years
Works with Finder
1
Github Watches
2
Github Forks
6
Github Stars
Databricks MCP Server
This is a Model Context Protocol (MCP) server for executing SQL queries against Databricks using the Statement Execution API. It can retrieve data by performing SQL requests using the Databricks API. When used in an Agent mode, it can successfully iterate over a number of requests to perform complex tasks. It is even better when coupled with Unity Catalog Metadata.
Features
- Execute SQL queries on Databricks
- List available schemas in a catalog
- List tables in a schema
- Describe table schemas
Setup
System Requirements
- Python 3.10+
- If you plan to install via
uv
, ensure it's installed
Installation
- Install the required dependencies:
pip install -r requirements.txt
Or if using uv
:
uv pip install -r requirements.txt
-
Set up your environment variables:
Option 1: Using a .env file (recommended)
Create a .env file with your Databricks credentials:
DATABRICKS_HOST=your-databricks-instance.cloud.databricks.com DATABRICKS_TOKEN=your-databricks-access-token DATABRICKS_SQL_WAREHOUSE_ID=your-sql-warehouse-id
Option 2: Setting environment variables directly
export DATABRICKS_HOST="your-databricks-instance.cloud.databricks.com" export DATABRICKS_TOKEN="your-databricks-access-token" export DATABRICKS_SQL_WAREHOUSE_ID="your-sql-warehouse-id"
You can find your SQL warehouse ID in the Databricks UI under SQL Warehouses.
Permissions Requirements
Before using this MCP server, ensure that:
-
SQL Warehouse Permissions: The user associated with the provided token must have appropriate permissions to access the specified SQL warehouse. You can configure warehouse permissions in the Databricks UI under SQL Warehouses > [Your Warehouse] > Permissions.
-
Token Permissions: The personal access token used should have the minimum necessary permissions to perform the required operations. It is strongly recommended to:
- Create a dedicated token specifically for this application
- Grant read-only permissions where possible to limit security risks
- Avoid using tokens with workspace-wide admin privileges
-
Data Access Permissions: The user associated with the token must have appropriate permissions to access the catalogs, schemas, and tables that will be queried.
To set SQL warehouse permissions via the Databricks REST API, you can use:
-
GET /api/2.0/sql/permissions/warehouses/{warehouse_id}
to check current permissions -
PATCH /api/2.0/sql/permissions/warehouses/{warehouse_id}
to update permissions
For security best practices, consider regularly rotating your access tokens and auditing query history to monitor usage.
Running the Server
Standalone Mode
To run the server in standalone mode:
python main.py
This will start the MCP server using stdio transport, which can be used with Agent Composer or other MCP clients.
Using with Cursor
To use this MCP server with Cursor, you need to configure it in your Cursor settings:
- Create a
.cursor
directory in your home directory if it doesn't already exist - Create or edit the
mcp.json
file in that directory:
mkdir -p ~/.cursor
touch ~/.cursor/mcp.json
- Add the following configuration to the
mcp.json
file, replacing the directory path with the actual path to where you've installed this server:
{
"mcpServers": {
"databricks": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/mcp-databricks-server",
"run",
"main.py"
]
}
}
}
If you're not using uv
, you can use python
instead:
{
"mcpServers": {
"databricks": {
"command": "python",
"args": [
"/path/to/your/mcp-databricks-server/main.py"
]
}
}
}
- Restart Cursor to apply the changes
Now you can use the Databricks MCP server directly within Cursor's AI assistant.
Available Tools
The server provides the following tools:
-
execute_sql_query
: Execute a SQL query and return the resultsexecute_sql_query(sql: str) -> str
-
list_schemas
: List all available schemas in a specific cataloglist_schemas(catalog: str) -> str
-
list_tables
: List all tables in a specific schemalist_tables(schema: str) -> str
-
describe_table
: Describe a table's schemadescribe_table(table_name: str) -> str
Example Usage
In Agent Composer or other MCP clients, you can use these tools like:
execute_sql_query("SELECT * FROM my_schema.my_table LIMIT 10")
list_schemas("my_catalog")
list_tables("my_catalog.my_schema")
describe_table("my_catalog.my_schema.my_table")
Handling Long-Running Queries
The server is designed to handle long-running queries by polling the Databricks API until the query completes or times out. The default timeout is 10 minutes (60 retries with 10-second intervals), which can be adjusted in the dbapi.py
file if needed.
Dependencies
- httpx: For making HTTP requests to the Databricks API
- python-dotenv: For loading environment variables from .env file
- mcp: The Model Context Protocol library
- asyncio: For asynchronous operations
相关推荐
Confidential guide on numerology and astrology, based of GG33 Public information
A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.
Converts Figma frames into front-end code for various mobile frameworks.
Therapist adept at identifying core issues and offering practical advice with images.
Oede knorrepot die vasthoudt an de goeie ouwe tied van 't boerenleven
A world class elite tech co-founder entrepreneur, expert in software development, entrepreneurship, marketing, coaching style leadership and aligned with ambition for excellence, global market penetration and worldy perspectives.
A medical specialist offering assistance grounded in clinical guidelines. Disclaimer: This is intended for research and is NOT safe for clinical use!
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Una puerta de enlace de API unificada para integrar múltiples API de explorador de blockchain similar a Esterscan con soporte de protocolo de contexto modelo (MCP) para asistentes de IA.
Espejo de https: //github.com/suhail-ak-s/mcp-typesense-server
Servidor MCP para obtener contenido de la página web con el navegador sin cabeza de dramaturgo.
本项目是一个钉钉 MCP (Protocolo del conector de mensajes )服务 , 提供了与钉钉企业应用交互的 API 接口。项目基于 Go 语言开发 支持员工信息查询和消息发送等功能。 支持员工信息查询和消息发送等功能。
Reviews

user_UxGsvaJe
As a dedicated user of the mcp-databricks-server, I can confidently say that this server is a game-changer for managing Databricks environments. Authored by RafaelCartenet, it offers seamless integration and robust functionality. The GitHub repository (https://github.com/RafaelCartenet/mcp-databricks-server) provides comprehensive documentation and easy-to-follow instructions, making setup a breeze. Highly recommended for anyone looking to enhance their Databricks workflows!