Advanced setup
uvx opik mcp configure covers the five clients it detects. This page is for
everything else: writing the config yourself, checking what each client points
at, and the difference between the hosted and local server.
Check what's configured
Section titled “Check what's configured”Each AI client keeps its own copy of the MCP configuration, and it isn't updated when your Opik configuration changes. To see what every detected client points at:
uvx opik mcp status Claude Code
Config ~/.claude.json
Connection Hosted (HTTP + OAuth)
Reports to https://www.comet.com/opik/api/v1/mcp
Status ✓ in sync with your Opik configurationA client flagged ✗ OUT OF SYNC has drifted from your Opik configuration —
re-run uvx opik mcp configure to fix it.
Hosted or local server
Section titled “Hosted or local server”uvx opik mcp configure picks the right one automatically. The difference
matters when you configure by hand:
| Hosted server | Local server | |
|---|---|---|
| Available on | Opik Cloud, and any deployment that provides it | Everywhere, and with --local-server |
| Transport | HTTP at https://www.comet.com/opik/api/v1/mcp |
uvx opik-mcp over stdio |
| Credentials | Browser sign-in (OAuth); no API key stored | OPIK_API_KEY in the client's config |
| Workspace | Chosen at sign-in | Written into the client's config |
Needs uv |
Only for the setup command | Yes, every run |
Set it up by hand
Section titled “Set it up by hand”On Opik Cloud, any MCP client can take the hosted server in one line:
npx add-mcp https://www.comet.com/opik/api/v1/mcp --name opik-mcpadd-mcp writes the URL into
Windsurf, Zed, Gemini CLI, Claude Desktop, Goose, Cline, Kiro and a dozen more.
The client has to support browser sign-in (OAuth) for remote MCP servers; without
it the hosted endpoint answers 401.
For the skill pack on a client the CLI doesn't cover, the community
skills CLI knows the skill directories
for 76+ agents (needs Node.js):
npx skills add comet-ml/opik-skillsHosted server
Section titled “Hosted server”Every client below asks for the same URL:
https://www.comet.com/opik/api/v1/mcpOn a self-hosted deployment this is your own Opik API base plus /v1/mcp, and
the deployment has to run the MCP OAuth authorization server — it is off by
default. See MCP OAuth for the flags. Where it
is off, the endpoint has no sign-in routes at all, so use the local server
instead.
claude mcp add --transport http opik-mcp https://www.comet.com/opik/api/v1/mcpOr edit ~/.claude.json:
{
"mcpServers": {
"opik-mcp": {
"type": "http",
"url": "https://www.comet.com/opik/api/v1/mcp"
}
}
}Restart Claude Code, complete the browser sign-in, then ask your assistant:
List my Opik projects.Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"opik-mcp": {
"type": "http",
"url": "https://www.comet.com/opik/api/v1/mcp"
}
}
}Reload Cursor and complete the browser sign-in. MCP needs a Cursor Pro plan or higher.
Create or open .vscode/mcp.json in your workspace:
{
"servers": {
"opik-mcp": {
"type": "http",
"url": "https://www.comet.com/opik/api/v1/mcp"
}
}
}Reload the window and complete the browser sign-in.
codex mcp add opik-mcp --url https://www.comet.com/opik/api/v1/mcpConfirm with codex mcp get opik-mcp, start a new session and complete the
browser sign-in.
Claude calls a remote MCP server a custom connector and adds it through the UI rather than a config file.
- Pro or Max: Customize → Connectors → + → Add custom connector, then paste the URL. Leave Advanced settings empty.
- Team or Enterprise: an owner adds it in Organization settings → Connectors → Add → Custom → Web.
Until you finish signing in, the connector lists only the authenticate and
complete_authentication tools. The rest appear afterwards.
Local server
Section titled “Local server”The local server runs on demand via uvx opik-mcp, with your credentials in the
client's env block.
claude mcp add --transport stdio opik-mcp \
--env OPIK_API_KEY=<your-key> \
--env OPIK_WORKSPACE=<your-workspace> \
-- uvx opik-mcpOr edit ~/.claude.json:
{
"mcpServers": {
"opik-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["opik-mcp"],
"env": {
"OPIK_API_KEY": "<your-key>",
"OPIK_WORKSPACE": "<your-workspace>"
}
}
}
}Restart Claude Code and verify with /mcp.
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"opik-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["opik-mcp"],
"env": {
"OPIK_API_KEY": "<your-key>",
"OPIK_WORKSPACE": "<your-workspace>"
}
}
}
}Reload Cursor; the green dot next to opik-mcp confirms the connection.
Create or open .vscode/mcp.json, or run the
MCP: Open User Configuration command to add it globally:
{
"servers": {
"opik-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["opik-mcp"],
"env": {
"OPIK_API_KEY": "<your-key>",
"OPIK_WORKSPACE": "<your-workspace>"
}
}
}
}Reload the window. The Copilot Chat MCP indicator shows opik-mcp once
the server is reachable.
codex mcp add opik-mcp \
--env OPIK_API_KEY=<your-key> \
--env OPIK_WORKSPACE=<your-workspace> \
-- uvx opik-mcpOr add an [mcp_servers.opik-mcp] table to ~/.codex/config.toml:
[mcp_servers.opik-mcp]
command = "uvx"
args = ["opik-mcp"]
[mcp_servers.opik-mcp.env]
OPIK_API_KEY = "<your-key>"
OPIK_WORKSPACE = "<your-workspace>"Edit ~/.config/opencode/opencode.json (or the file in
$OPENCODE_CONFIG_DIR). opencode uses its own vocabulary: local rather than
stdio, one command list, and environment rather than env:
{
"mcp": {
"opik-mcp": {
"type": "local",
"command": ["uvx", "opik-mcp"],
"environment": {
"OPIK_API_KEY": "<your-key>",
"OPIK_WORKSPACE": "<your-workspace>"
},
"enabled": true
}
}
}From a script or CI
Section titled “From a script or CI”Setup writes into your AI client's own configuration, so a run with no terminal writes nothing unless you name the client:
uvx opik mcp configure --ai-client cursor --skillsCredentials come from ~/.opik.config, or from OPIK_API_KEY and
OPIK_WORKSPACE already in the environment, such as a CI secret — do not paste
the key into the command line. --ai-client takes claude-code, cursor,
vscode, codex, opencode, or all; repeat it for several. --skills
installs the skill pack without asking, --no-skills skips it.