Skip to content

[WIP] Prototype/POC of remote server support + hosting on Databricks apps #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions servers/developer_tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

## Overview
A Model Context Protocol server that exposes common Databricks developer actions as tools.
Note that if you're developing within the Databricks product (e.g. writing a Databricks notebook), you can
use the Databricks Assistant, which automates common developer tasks on Databricks for you. However, this server can
be useful when developing outside of Databricks, or to integrate Databricks developer tools into other agents.


## Usage
1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/)
Expand Down
14 changes: 14 additions & 0 deletions servers/unity_catalog/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
command: [
"uv",
"run",
"unitycatalog-mcp",
"-s",
"retail_prod.agents",
"-g",
"01efcca6fdc712d7be87a40ad4a2e33e"
]


#env:
# - name: "SERVING_ENDPOINT"
# valueFrom: "serving-endpoint"
2 changes: 2 additions & 0 deletions servers/unity_catalog/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dependencies = [
"unitycatalog-ai>=0.1.0",
"databricks-sdk>=0.49.0",
"databricks-openai>=0.3.1",
"uvicorn>=0.34.0"
]

[project.scripts]
Expand All @@ -33,6 +34,7 @@ dev-dependencies = [
"pyright>=1.1.393",
"ruff>=0.9.4",
"pytest>=8.3.4",
"anthropic",
]

[tool.pytest.ini_options]
Expand Down
Loading
Loading