You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An experimental collection of [MCP](https://modelcontextprotocol.io/introduction) servers to help AI agents fetch enterprise data from Databricks, automate common developer actions on Databricks, etc:
[Databricks Unity Catalog server](./servers/unity_catalog/README.md): Fetch data and run tools registered in from Unity Catalog, making agents aware of your enterprise data
10
24
*
11
-
[Databricks developer tools server](./servers/developer_tools/README.md): Perform common developer actions in Databricks, like creating and updating notebooks, running jobs, etc. This server is not yet usable, but contributions are welcome!
25
+
[Databricks developer tools server](): Perform common developer actions in Databricks, like creating and updating notebooks, running jobs, etc. This server is not yet usable, but contributions are welcome!
12
26
13
27
The set of servers and tools in this repo is fluid and will evolve over time. We welcome contributions to this repo - please first
14
28
read the [contributor guidelines](CONTRIBUTING.md) to streamline the process and discover areas where help is needed.
15
29
16
-
## Usage
17
-
See the `README.md` in each server's directory for detailed instructions.
A Model Context Protocol server that exposes structured and unstructured data in Unity Catalog ([vector search indexes](https://docs.databricks.com/gcp/en/generative-ai/vector-search), [functions](https://docs.databricks.com/aws/en/generative-ai/agent-framework/create-custom-tool), and [Genie spaces](https://docs.databricks.com/aws/en/genie/)), as tools.
1.[Configure Databricks credentials](https://docs.databricks.com/aws/en/dev-tools/cli/authentication) with access to the required APIs
23
-
1. Add the server to your MCP client configuration. For example, to use the Databricks Unity Catalog MCP server with Claude Desktop, add the following to your `claude_desktop_config.json`:
43
+
1. Add the server to your MCP client configuration. For example, to use this server with Claude Desktop, add the following to your `claude_desktop_config.json`:
24
44
25
45
```json
26
46
{
@@ -29,7 +49,7 @@ For most servers, the following steps work:
29
49
"command": "/path/to/uv/executable/uv",
30
50
"args": [
31
51
"--directory",
32
-
"/path/to/this/repo/servers/unity_catalog",
52
+
"/path/to/this/repo",
33
53
"run",
34
54
"unitycatalog-mcp",
35
55
"-s",
@@ -42,6 +62,20 @@ For most servers, the following steps work:
42
62
}
43
63
```
44
64
65
+
### Supported tools
66
+
67
+
The list of tools supported by this server is dynamically inferred at startup time based on the functions and vector search indexes
68
+
within the specified Unity Catalog schema, as well as any specified Genie spaces. In particular, the server exposes
69
+
the following tools:
70
+
71
+
***UC Functions**: for each UC function, the server exposes a tool with the same name, arguments, and return type as the function
72
+
***Vector search indexes**: for each vector search index, the server exposes a tool for querying that vector search index
73
+
***Genie spaces**: for each Genie space, the server exposes tools for managing conversations and sending questions to the space
74
+
75
+
## Developer Tools Server
76
+
77
+
This server is currently under construction. It is not yet usable, but contributions are welcome!
78
+
45
79
## Support
46
80
Please note that all projects in the `databrickslabs` GitHub organization are provided for your exploration only, and are not formally supported by Databricks with Service Level Agreements (SLAs). They are provided AS-IS and we do not make any guarantees of any kind. Please do not submit a support ticket relating to any issues arising from the use of these projects.
0 commit comments