mcp-server-chart vs ai-agent-dev-week4-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ai-agent-dev-week4-mcp-server by jmjmlang | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
ai-agent-dev-week4-mcp-server · Summary
An MCP server exposing a Person database with CRUD operations for AI agents using Next.js and Prisma.
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
ai-agent-dev-week4-mcp-server · Use cases
- Personal CRM assistant that can manage contact information
- Team management tool integrated with AI agents
- Automated contact sync between different systems
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"]
}
}
}ai-agent-dev-week4-mcp-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install - Set up your database: Add
DATABASE_URLto.envpointing to your Week 3 Neon database - Push database schema:
npx prisma db push - Run development server:
npm run dev
The server will be available at http://localhost:3000/api/mcp
API Key Setup
Generate an API key for a user:
npm run issue-key -- user@example.com "my laptop"Claude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"ai-agent-dev-week4": {
"command": "npx",
"args": ["ai-agent-dev-week4-mcp-server"],
"env": {
"DATABASE_URL": "your_database_url"
}
}
}
}VS Code Configuration
Copy .vscode/mcp.json into your workspace.