mcp-server-chart vs context-engineering
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | context-engineering by timothywarner-org | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
context-engineering · Summary
Production-ready MCP server implementing semantic memory with hybrid RAG and CoALA memory tiers for AI assistants.
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
context-engineering · Use cases
- Building AI assistants with long-term memory capabilities
- Implementing semantic memory and hybrid RAG systems
- Developing context-aware AI applications using MCP protocol
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"]
}
}
}context-engineering · Install
Installation
Prerequisites
- Python 3.13 (pinned in
.python-version) - Node.js 20+ (for Lab 01 and MCP Inspector)
- [uv](https://docs.astral.sh/uv/) package manager (recommended)
- Claude Desktop or Claude Code
Option 1: Hello MCP Lab (Beginner)
git clone https://github.com/timothywarner-org/context-engineering.git
cd context-engineering/labs/lab-01-hello-mcp/starter
npm install && npm startOption 2: WARNERCO Schematica (Full Application)
cd src/warnerco/backend
uv sync
uv run uvicorn app.main:app --reload # HTTP server
uv run warnerco-mcp # MCP stdio serverClaude Desktop Configuration
{
"mcpServers": {
"warnerco": {
"command": "uv",
"args": ["run", "warnerco-mcp"],
"cwd": "C:/github/context-engineering/src/warnerco/backend"
}
}
}