mcp-server-chart vs markmap-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | markmap-mcp-server by jinzcdev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 200 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
markmap-mcp-server · Summary
An MCP server that converts Markdown to interactive mind maps with export support.
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
markmap-mcp-server · Use cases
- Creating visual representations of structured documents and notes
- Converting technical documentation to visual mind maps for better understanding
- Generating interactive mind maps for presentations or brainstorming sessions
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"]
}
}
}markmap-mcp-server · Install
Installation
Installing via Smithery
npx -y @smithery/cli install @jinzcdev/markmap-mcp-server --client claudeManual Installation
npm install @jinzcdev/markmap-mcp-server -g
npx -y @jinzcdev/markmap-mcp-serverConfiguration
Add to your MCP client configuration:
{
"mcpServers": {
"markmap": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@jinzcdev/markmap-mcp-server"]
}
}
}