mcp-server-chart vs octocode
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | octocode by Muvon | |
|---|---|---|
| Stars | ★ 4,068 | ★ 376 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| 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.
octocode · Summary
MCP server that transforms codebases into searchable knowledge graphs with semantic search and structural understanding.
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
octocode · Use cases
- Help AI assistants navigate and search codebases semantically
- Analyze code structure and dependencies for refactoring decisions
- Find code patterns and error handling across entire 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"]
}
}
}octocode · Install
Installation
# Universal installer (Linux, macOS, Windows)
curl -fsSL https://raw.githubusercontent.com/Muvon/octocode/master/install.sh | sh
# macOS with Homebrew
brew install muvon/tap/octocodeMCP Configuration
Add to your MCP client config (Claude Desktop, Cursor, Windsurf):
{
"mcpServers": {
"octocode": {
"command": "octocode",
"args": ["mcp", "--path", "/your/project"]
}
}
}