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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ A Model Context Protocol (MCP) server that connects to Databricks API, allowing

## Running the Server

### Manually

Start the MCP server:
```
python main.py
Expand All @@ -66,6 +68,23 @@ You can test the MCP server using the inspector by running
npx @modelcontextprotocol/inspector python3 main.py
```

### In Visual Studio Code

Create (if not existing) a ```.vscode``` directory. Then create ```mcp.json```

```
{
"servers": {
"DBX": {
"command": "python.exe",
"args": [
"/path/to/main.py"
]
}
}
}
```

## Available MCP Tools

The following MCP tools are available:
Expand Down