U
Unity Catalog
community
ai
An MCP server that enables LLMs to interact with Unity Catalog AI, supporting CRUD operations on Unity Catalog Functions and executing them as MCP tools.
mcp-server-unitycatalog: An Unity Catalog MCP server
<p align="center" float="left"> <img width="256" src="https://raw.githubusercontent.com/ognis1205/mcp-server-unitycatalog/main/docs/vscode1.webp" /> <img width="256" src="https://raw.githubusercontent.com/ognis1205/mcp-server-unitycatalog/main/docs/vscode2.webp" /> <img width="256" src="https://raw.githubusercontent.com/ognis1205/mcp-server-unitycatalog/main/docs/vscode3.webp" /> </p>Overview
A Model Context Protocol server for Unity Catalog. This server provides Unity Catalog Functions as MCP tools.
Tools
You can use all Unity Catalog Functions registered in Unity Catalog alongside the following predefined Unity Catalog AI tools:
-
uc_list_functions
- Lists functions within the specified parent catalog and schema.
- Returns: A list of functions retrieved from Unity Catalog.
-
uc_get_function
- Gets a function within a parent catalog and schema.
- Input:
(string): The name of the function (not fully-qualified).name
- Returns: A function details retrieved from Unity Catalog.
-
uc_create_function
- Creates a function within a parent catalog and schema. WARNING: This API is experimental and will change in future versions.
- Input:
(string): The name of the function (not fully-qualified).name
(string): The Python script including the function to be registered.script
- Returns: A function details created within Unity Catalog.
-
uc_delete_function
- Deletes a function within a parent catalog and schema.
- Input:
(string): The name of the function (not fully-qualified).name
- Returns: None.
Installation
Using uv
Configuration
These values can also be set via CLI options or
.env
environment variables. Required arguments are the Unity Catalog server, catalog, and schema, while the access token and verbosity level are optional. Run uv run mcp-server-unitycatalog --help
for more detailed configuration options.Argument | Environment Variable | Description | Required/Optional |
---|---|---|---|
,
|
| The base URL of the Unity Catalog server. | Required |
,
|
| The name of the Unity Catalog catalog. | Required |
,
|
| The name of the schema within a Unity Catalog catalog. | Required |
,
|
| The access token used to authorize API requests to the Unity Catalog server. | Optional |
,
|
| The verbosity level for logging. Default: . | Optional |
,
|
| The directory where log files will be stored. Default: . | Optional |
Usage with Claude Desktop or VSCode Cline
Add this to your
<details>
<summary>Using uv</summary>
claude_desktop_config.json
(or cline_mcp_settings.json
):</details> <details> <summary>Using docker</summary>{ "mcpServers": { "unitycatalog": { "command": "uv", "args": [ "--directory", "/<path to your local git repository>/mcp-server-unitycatalog", "run", "mcp-server-unitycatalog", "--uc_server", "<your unity catalog url>", "--uc_catalog", "<your catalog name>", "--uc_schema", "<your schema name>" ] } } }
- Note: replace '/Users/username' with the a path that you want to be accessible by this tool
</details>{ "mcpServers": { "unitycatalog": { "command": "docker", "args": [ "run", "--rm", "-i", "mcp/unitycatalog", "--uc_server", "<your unity catalog url>", "--uc_catalog", "<your catalog name>", "--uc_schema", "<your schema name>" ] } } }
Building
Docker:
docker build -t mcp/unitycatalog .
Future Plans
- Implement support for
.list_functions
- Implement support for
.get_function
- Implement support for
.create_python_function
- Implement support for
.execute_function
- Implement support for
.delete_function
- Implement semantic catalog explorer tools.
- Add Docker image.
- Implement
methods. In the current implementation,use_xxx
andcatalog
need to be defined when starting the server. However, they will be implemented asschema
anduse_catalog
functions, dynamically updating the list of available functions when theuse_schema
is executed.use_xxx
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Related Servers

AgentQL
official
Enable AI agents to get structured data from unstructured web with [AgentQL](https://www.agentql.com/).
View Details
BICScan
official
Risk score / asset holdings of EVM blockchain address (EOA, CA, ENS) and even domain names.
View DetailsChronulus AI
official
Predict anything with Chronulus AI forecasting and prediction agents.
View Details