devcontext vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
devcontext by aiurda | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 45 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 42 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | HTML | TypeScript |
| Last commit | 12 mo ago | this month |
devcontext · Summary
Autonomous MCP server providing project-centric context awareness through pattern learning and relationship graphs.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
devcontext · Use cases
- Autonomous development environment with Cursor Rules integration
- Real-time code context retrieval during conversations
- Pattern recognition and development workflow optimization
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
devcontext · Install
Installation
Prerequisites
- Node.js 18.0.0 or higher
- Cursor IDE with MCP support
- TursoDB account
Step 1: Set up TursoDB Database
- Sign up for [Turso](https://turso.tech/) and create an account
- Install Turso CLI (optional but recommended):
``bash curl -sSfL https://get.turso.tech/install.sh | bash ``
- Authenticate with Turso:
``bash turso auth login ``
- Create a project database:
``bash turso db create devcontext ``
- Get database credentials and save both URL and token
Step 2: Configure MCP in Cursor
Create or edit .cursor/mcp.json in your project directory:
{
"mcpServers": {
"devcontext": {
"command": "npx",
"args": ["-y", "devcontext@latest"],
"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"]
}
}
}