mcp-server-chart vs agent-lsp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | agent-lsp by blackwell-systems | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| 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.
agent-lsp · Summary
Stateful MCP server bridging language servers with AI agents, offering type-aware navigation, blast-radius analysis, and pre-verified edits across 30+ languages.
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
agent-lsp · Use cases
- Large-scale refactoring with blast-radius analysis to understand impact before making changes
- Type-safe navigation across codebases to find implementations, references, and call hierarchies
- Speculative editing to preview changes in memory before writing to disk
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"]
}
}
}agent-lsp · Install
Install agent-lsp as a Go binary:
go install github.com/blackwell-systems/agent-lsp@latestFor Claude Desktop, add to .mcp.json:
{
"mcpServers": {
"agent-lsp": {
"command": "agent-lsp",
"args": ["stdio"]
}
}
}Docker images are available for each language (go, typescript, python, etc.)