mcp-server-chart vs nvim-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | nvim-mcp by paulburgess1357 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 54 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| 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.
nvim-mcp · Summary
MCP server connecting AI agents to Neovim via msgpack-RPC, enabling code editing and command execution without plugins.
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
nvim-mcp · Use cases
- AI-assisted coding with direct editor interaction
- Automating repetitive Neovim operations through AI
- Collaborative editing between multiple AI agents in the same Neovim instance
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"]
}
}
}nvim-mcp · Install
Installation
Using uv (recommended)
- Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh- Register the MCP server with your client. For Cursor, add to
.cursor/mcp.json:
{
"mcpServers": {
"nvim-mcp": {
"command": "uvx",
"args": ["nvim-mcp"]
}
}
}For other clients like Claude Desktop, see the [configuration guide](config/README.md).
Using Nix
Ensure Nix is installed with flakes enabled:
{
"mcpServers": {
"nvim-mcp": {
"command": "nix",
"args": ["run", "github:paulburgess1357/nvim-mcp"]
}
}
}- Add agent rules to specify when and how the AI should use the tools. See the [configuration guide](config/README.md#2-add-agent-rules).
- Start Neovim. It will be auto-discovered on most Linux systems.