Getting Started
About
Go 1.24.1 and uv must be installed; Python 3.13 is used for the bridge.
Details
- Author
- wagnerjt
- Downloads
- 330
- Categories
- Other
Jump to
- Tests the initial LiteLLM MCP implementation
- Uses Go-based MCP server and client (mark3labs)
- Supports SSE transport over HTTP
- Includes Docker setup for LiteLLM proxy
- Provides both Python SDK and Go client examples
- Requires Go 1.24.1 and uv
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Getting StartedCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install Go 1.24.1 and uv, then create a Python 3.13 virtual environment and install bridge dependencies. Run the Go MCP server on SSE transport (port 8080), and separately run the Go client connecting to that server’s URI. Optionally use Docker to start the LiteLLM proxy via the bridge’s docker-compose file.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"getting started": {
"go-mcp": {
"command": "uv",
"args": [
"venv",
"--python",
"3.13"
]
}
}
}
}
McpServers
{
"go-mcp": {
"command": "uv",
"args": [
"venv",
"--python",
"3.13"
]
}
}
Getting Started
This project tests the initial LiteLLM MCP implementation with a few other MCP servers and clients. In particular the go-based mcp server and client from mark3labs
Requirements
You need to have the following installed
go 1.24.1
uv
Setup deps
```sh
uv venv --python 3.13
source .venv/bin/activate # windows -- source .venv/Scripts/active
uv pip install -r bridge/requirements.txt
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



