cursor10x-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
cursor10x-mcp by aiurda | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 79 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 40 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 13 mo ago | this month |
cursor10x-mcp · Summary
DevContext (formerly Cursor10x) is an MCP server providing persistent multi-dimensional memory for AI assistants.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cursor10x-mcp · Use cases
- Maintaining project context across multiple development sessions
- Enhancing AI assistant understanding of code relationships
- Retaining technical decisions and architectural decisions over time
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
cursor10x-mcp · Install
Prerequisites
- Node.js 18 or higher
- npm or yarn package manager
- Turso database account
Setup Steps
- **Configure Turso Database:**
# Install Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash
# Login to Turso
turso auth login
# Create a database
turso db create cursor10x-mcp
# Get database URL and token
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp- **Configure Cursor MCP:**
Update .cursor/mcp.json in your project directory with the database URL and Turso auth token:
{
"mcpServers": {
"cursor10x-mcp": {
"command": "npx",
"args": ["cursor10x-mcp"],
"enabled": true,
"env": {
"TURSO_DATABASE_URL": "your-turso-database-url",
"TURSO_AUTH_TOKEN": "your-turso-auth-token"
}
}
}
}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"]
}
}
}