Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions databricks-mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ cd ai-dev-kit
### Step 2: Install the packages

```bash
# Install the core library
uv pip install -e ./databricks-tools-core
# Create a virtual environment
uv venv .venv

# Install the MCP server
uv pip install -e ./databricks-mcp-server
# Install the core library and MCP server into it
uv pip install --python .venv/bin/python -e ./databricks-tools-core -e ./databricks-mcp-server
```

### Step 3: Configure Databricks authentication
Expand All @@ -41,8 +41,8 @@ For Cursor, add to your project's `.cursor/mcp.json` (create the file if it does
{
"mcpServers": {
"databricks": {
"command": "uv",
"args": ["run", "--directory", "/path/to/ai-dev-kit", "python", "databricks-mcp-server/run_server.py"],
"command": "/path/to/ai-dev-kit/.venv/bin/python",
"args": ["/path/to/ai-dev-kit/databricks-mcp-server/run_server.py"],
"defer_loading": true
}
}
Expand Down