codenav vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
codenav by ajacobm | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 1 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 36 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this month |
codenav · Summary
CodeNavigator is an MCP server providing comprehensive code analysis across 25+ programming languages.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
codenav · Use cases
- Code analysis and refactoring assistance in multi-language projects
- Dependency mapping and circular dependency detection across codebases
- Code complexity measurement and maintainability assessment
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
codenav · Install
Installation
PyPI Installation
pip install codenav ast-grep-py rustworkxClaude Desktop Integration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"codenav": {
"command": "codenav"
}
}
}Docker Integration
# Pull latest SSE server
docker pull ghcr.io/ajacobm/codenav:sse-latest
# Run SSE mode
docker run -p 8000:8000 -v $(pwd):/workspace \
ghcr.io/ajacobm/codenav:sse-latestmcp-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"]
}
}
}