Databricks-cursor-mcp
Enables managing Databricks directly from Cursor IDE with 30 tools for notebooks, clusters, jobs, DBFS, SQL, and workspace operations.
README
Databricks MCP Server for Cursor
30 powerful tools to manage Databricks directly from Cursor IDE with AI assistance.
🚀 Quick Setup
Prerequisites
- Node.js v14+ (
node --version) — if missing, runbrew install node - Databricks CLI (
databricks --version) — if missing, runbrew install databricks - Databricks account with OAuth access
Installation
# 1. Clone or download this directory
git clone https://github.com/nayantarasundarraj-hue/Databricks-cursor-mcp.git ~/databricks-mcp-server
cd ~/databricks-mcp-server
# 2. Install dependencies
npm install
# 3. Verify installation
npm test
# 4. Authenticate with Databricks
databricks auth login --profile dev --host https://YOUR-WORKSPACE.cloud.databricks.com
# 5. Verify your paths (note these down for the config below)
which node
which databricks
# 6. Configure Cursor
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"databricks": {
"command": "node",
"args": [
"/Users/YOUR_USERNAME/databricks-mcp-server/server.js"
],
"env": {
"PATH": "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
"DATABRICKS_PROFILE": "dev",
"DATABRICKS_WORKSPACE_HOST": "YOUR-WORKSPACE.cloud.databricks.com"
}
}
}
}
Important:
- Replace
YOUR_USERNAMEwith your macOS username andYOUR-WORKSPACEwith your Databricks workspace hostname. DATABRICKS_PROFILEmust match the profile name you used duringdatabricks auth login. Common values aredev,affirm-prod, orDEFAULT. Check~/.databrickscfgto see your profiles.- If you get
node: command not found, runwhich nodeand replace"node"with the full path (e.g./opt/homebrew/bin/node).
6. Restart Cursor
Quit completely (Command + Q / Alt + F4) and reopen. Wait 10-15 seconds.
✅ Verify It Works
In Cursor, ask:
- "List my Databricks clusters"
- "List notebooks in /Users/"
- "Show me available Databricks tools"
🛠️ What You Get - 30 Tools
📖 Browse & Read (5)
list_notebooks- Browse foldersget_notebook- Read contentlist_clusters- Show clusterslist_jobs- Show jobsget_job_details- Job info
⚡ Execute & Monitor (5)
run_notebook- Execute with parametersget_run- Check statusget_run_output- Get resultscancel_run- Stop executionlist_runs- View history
✏️ Edit Notebooks (3) - with Auto-Backup!
export_notebook- Downloadimport_notebook- Upload with backupget_notebook_revisions- View history
🖥️ Manage Clusters (4)
start_cluster- Wake upstop_cluster- Save costsget_cluster_status- Check statusrestart_cluster- Restart
📋 Job Operations (2)
run_job- Trigger jobsget_job_runs- View runs
📁 DBFS Operations (4)
list_dbfs- Browse filesystemread_dbfs_file- Read filesupload_to_dbfs- Uploaddownload_from_dbfs- Download
🔍 SQL Queries (2)
execute_sql- Run querieslist_sql_warehouses- List warehouses
📝 Workspace Management (3)
create_notebook- Create newdelete_notebook- Removemove_notebook- Organize
📦 Library Management (2)
list_cluster_libraries- Show installedinstall_library- Add packages
💡 Usage Examples
Edit code safely:
"Add import pandas as pd to /Users/me/notebook"
Save money:
"Stop all idle clusters"
Query data:
"Run this SQL on warehouse abc123: SELECT * FROM users LIMIT 10"
Automate workflows:
"Run /Users/me/ETL on cluster X with params date=2024-01-20"
🔒 Safety Features
- ✅ Path validation — all local file operations are restricted to your home directory and /tmp; sensitive paths (.ssh, .aws, .env, .kube, etc.) are blocked
- ✅ Shell injection prevention — uses
execFileSync(notexecSync), no shell interpretation - ✅ Human-in-the-loop (HIL) — 8 operations require explicit user confirmation:
run_notebook,run_job,delete_notebook,move_notebook,stop_cluster,restart_cluster,upload_to_dbfs,install_library - ✅ SQL blocklist — DDL/DML/Databricks-specific statements (DROP, DELETE, INSERT, COPY INTO, CALL, VACUUM, etc.) require confirmation; read-only SQL runs immediately
- ✅ Error sanitization — OAuth tokens, URLs, and internal paths are stripped from error messages
- ✅ Language validation — only PYTHON, SQL, SCALA, R accepted for notebook creation
- ✅ Pinned dependencies — SDK version locked to prevent supply chain attacks
- ✅ Automatic local backup on notebook edits (timestamped)
- ✅ New Databricks revision on import (UI rollback)
⚠️ Agentic Deployment Warning
This MCP exposes both read and write tools in a single server. In an agentic context where the AI processes untrusted content (web pages, Slack messages, RAG documents, emails), a prompt injection could chain read operations (e.g., get_notebook, read_dbfs_file) with write/exec operations (e.g., execute_sql, upload_to_dbfs).
Recommendations:
- Do NOT co-install this MCP in an agent that also has tools reading untrusted external content (web fetch, Slack search, RAG over external docs, mailbox readers) without understanding this risk.
- Always review HIL confirmation prompts carefully — they show the full operation details including file paths and SQL queries.
- For high-security environments, consider disabling write tools via
disabledToolsin your Cursor MCP config and only enabling the read-only subset.
🐛 Troubleshooting
"node: command not found"
Cursor doesn't load your shell config (.zshrc), so it may not find node. Run which node in your terminal and use that full path as the command value in your mcp.json.
"databricks not found" on tool calls
Same issue — Cursor can't find the Databricks CLI. Make sure the PATH in your config env includes the directory from which databricks (usually /opt/homebrew/bin or /usr/local/bin).
"npm: command not found"
You need Node.js installed:
brew install node
Then retry npm install.
"Cannot find module @modelcontextprotocol/sdk"
cd ~/databricks-mcp-server
npm install
"Authentication failed" or "Token expired"
databricks auth login --profile YOUR_PROFILE --host https://YOUR-WORKSPACE.cloud.databricks.com
# Then restart Cursor (Cmd+Q, reopen)
"Profile not found"
Make sure DATABRICKS_PROFILE in your mcp.json matches a profile in ~/.databrickscfg. Run cat ~/.databrickscfg to check.
Tools not showing in Cursor
- Check the absolute path in
mcp.jsonis correct - Quit Cursor completely (Cmd+Q) and reopen
- Wait 10-15 seconds
- Check Settings → MCP for connection status
- Check logs: View → Output → "Model Context Protocol"
📁 Project Structure
databricks-mcp-server/
├── server.js # Main MCP server (1,380 lines)
├── package.json # Dependencies
├── node_modules/ # Installed packages (auto-created)
└── README.md # This file
🤝 Contributing
To add new tools:
- Add method in
server.js:
async myNewTool(args) {
const result = await this.executeCLI(['my-command', 'subcommand', args.param, '--output', 'json']);
return JSON.parse(result);
}
- Register in
setupHandlers():
case 'my_new_tool':
const result = await this.myNewTool(args);
return { content: [{ type: 'text', text: JSON.stringify(result) }] };
-
Add tool definition in
ListToolsRequestSchemahandler -
Test and commit!
📝 License
MIT - Feel free to modify and share
💬 Support
Issues? Check troubleshooting above or ask the team!
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。