opencode-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
opencode-mcp by AlaeddineMessadi | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 39 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 47 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
opencode-mcp · Summary
MCP server that integrates OpenCode AI's 79 tools with MCP clients for autonomous coding tasks.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
opencode-mcp · Use cases
- Delegate complex coding tasks like building REST APIs or refactoring modules to OpenCode while the primary AI continues working
- Run background coding tasks in parallel with other work using fire-and-forget tools
- Automate code reviews and debugging sessions with guided workflow prompts
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
opencode-mcp · Install
Installation
Prerequisite: [OpenCode](https://opencode.ai/) must be installed.
**Claude Code:**
claude mcp add opencode -- npx -y opencode-mcp**Claude Desktop / Cursor / Windsurf:** Add to your MCP config:
{
"mcpServers": {
"opencode": {
"command": "npx",
"args": ["-y", "opencode-mcp"]
}
}
}**VS Code Copilot / Zed / Amazon Q:** See [Configuration](docs/configuration.md) for client-specific setup.
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"]
}
}
}