Opik MCP Server is an open-source implementation of the Model Context Protocol for the Opik platform. It provides a unified interface for accessing Opik's capabilities, including prompts management, projects organization, traces tracking, and metrics analysis. With support for multiple transport mechanisms, it enables seamless integration with IDEs like Cursor and offers flexible deployment options for different environments.
Opik MCP Server provides a standardized interface to the Opik platform through the Model Context Protocol (MCP). This implementation allows developers to access Opik's capabilities directly from their development environment, making it easier to manage AI/LLM workflows.
Clone the repository
git clone https://github.com/comet-ml/opik-mcp.git
cd opik-mcp
Install dependencies
npm install
Build the project
npm run build
Configure environment variables
Create a .env
file based on the provided example:
cp .env.example .env
Edit the .env
file with your Opik API credentials and preferences.
The MCP server can be started with different transport mechanisms:
Standard I/O (recommended for IDE integration)
npm run start:stdio
Server-Sent Events (experimental)
npm run start:sse
To integrate with Cursor IDE, create a .cursor/mcp.json
file in your project directory with the following configuration:
{
"mcpServers": {
"opik": {
"command": "/path/to/node",
"args": [
"/path/to/opik-mcp/build/index.js",
"--apiUrl",
"https://www.comet.com/opik/api",
"--apiKey",
"YOUR_API_KEY",
"--workspace",
"default",
"--debug",
"true"
]
}
}
}
Replace /path/to/node
with your Node.js executable path and /path/to/opik-mcp/build/index.js
with the actual path to the built index.js file. Also, replace YOUR_API_KEY
with your actual Opik API key.
The Opik MCP Server provides access to the following tools:
For containerized deployment, you can use the provided Dockerfile:
# Build the Docker image
docker build -t opik-mcp .
# Run the container
docker run -p 3000:3000 --env-file .env opik-mcp
If you encounter issues:
For additional help, join the Comet Slack community or refer to the Opik documentation.