mcp-server-chart vs MCP-Next.js
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP-Next.js by sattarrasouli | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCP-Next.js · Summary
A Next.js MCP server with TypeScript that exposes multiple simple tools like dice rolling and greetings via JSON-RPC API.
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
MCP-Next.js · Use cases
- Learning how to build MCP servers with Next.js
- Testing MCP tool connectivity with various clients
- Simple demonstration of MCP protocol implementation
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"]
}
}
}MCP-Next.js · Install
# Clone the repository
git clone https://github.com/sattarrasouli/MCP-Next.js.git
cd MCP-Next.js
# Install dependencies
npm install
# Run the development server
npm run devThe MCP API will be available at http://localhost:3000/api/mcp.
**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-nextjs": {
"command": "npm",
"args": ["run", "dev"],
"env": {
"NODE_PATH": "."
}
}
}
}