opik-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
opik-mcp by comet-ml | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 203 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsMonitoring | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
opik-mcp · Summary
Comet-ML's MCP server for Opik provides unified access to prompts, projects, traces, and metrics across various IDEs.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
opik-mcp · Use cases
- ML engineers tracking experiment metrics and accessing prompts directly within their IDE
- Data scientists exploring project traces and datasets without leaving their development environment
- Teams managing prompt lifecycle and version control across different workspace projects
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
opik-mcp · Install
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}"]
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}