opik-mcp
by comet-ml·★ 203·Score 50
Comet-ML's MCP server for Opik provides unified access to prompts, projects, traces, and metrics across various IDEs.
Overview
This is a production-ready MCP server implementation that bridges Opik's ML experiment tracking platform with IDE environments via the Model Context Protocol. It supports both local stdio and remote streamable-http transports, making it versatile for different deployment scenarios. The server exposes comprehensive toolsets for managing prompts, projects, traces, metrics, and datasets, with fine-grained configuration options to enable specific capabilities based on user needs.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're already using or planning to use Opik for MLOps and want seamless IDE integration with prompts, projects, traces, and metrics.
When NOT to choose this
Avoid if you need vendor-agnostic solutions, as this locks you into Comet's Opik platform, or if you require a hosted remote MCP service (currently not provided).
Tools this server exposes
5 tools extracted from the README (low confidence)resources/listExposes static URIs for workspace information
resources/templates/listExposes dynamic URI templates for projects
resources/readReads data from static and templated URIs
prompts/listLists available workflow prompts
prompts/getRetrieves specific prompts by ID
Note: Tool names were inferred from the documentation section about MCP resources and prompts, as no explicit tool list was provided in the README
Comparable tools
Installation
Installation
- Run with npx:
npx -y opik-mcp --apiKey YOUR_API_KEY- Add to Claude Desktop (
claude_desktop_config.json):
{
"mcpServers": {
"opik": {
"command": "npx",
"args": ["-y", "opik-mcp", "--apiKey", "YOUR_API_KEY"]
}
}
}- Add to VS Code / GitHub Copilot (
.vscode/mcp.json):
{
"inputs": [
{
"type": "promptString",
"id": "opik-api-key",
"description": "Opik API Key",
"password": true
}
],
"servers": {
"opik-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "opik-mcp", "--apiKey", "${input:opik-api-key}"]
}
}
}Compare opik-mcp with
Last updated · Auto-generated from public README + GitHub signals.