mcp-server-chart vs opik-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | opik-mcp by comet-ml | |
|---|---|---|
| Stars | ★ 4,068 | ★ 203 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsMonitoring |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
opik-mcp · Summary
Comet-ML's MCP server for Opik provides unified access to prompts, projects, traces, and metrics across various IDEs.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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}"]
}
}
}