mcp-server-chart vs cclsp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cclsp by ktnyt | |
|---|---|---|
| Stars | ★ 4,068 | ★ 637 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cclsp · Summary
cclsp is an MCP server that bridges AI coding assistants with LSP servers for robust code navigation and symbol manipulation.
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
cclsp · Use cases
- Jumping to function or variable definitions directly from AI code suggestions
- Finding all references to a symbol across a large codebase
- Safely renaming variables, functions, or classes with confidence
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"]
}
}
}cclsp · Install
Installation
- Install cclsp globally:
npm install -g cclsp- Run the setup wizard:
cclsp setup- Add to Claude Desktop configuration:
{
"mcpServers": {
"cclsp": {
"command": "cclsp",
"env": {
"CCLSP_CONFIG_PATH": "/path/to/your/cclsp.json"
}
}
}
}