altk-evolve vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
altk-evolve by AgentToolkit | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 84 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 46 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
altk-evolve · Summary
Evolve provides AI agents with memory and learning capabilities through MCP server integration.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
altk-evolve · Use cases
- Enhance coding assistants with learning capabilities from past interactions
- Create knowledge-sharing systems for AI agents across teams
- Improve reliability of AI agents on complex multi-step tasks
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
altk-evolve · Install
Installation
Prerequisites:
- Python 3.12 or higher
uv(recommended) orpip
From Source:
git clone https://github.com/agenttoolkit/altk-evolve.git
cd altk-evolve
uv venv --python=3.12 && source .venv/bin/activate
uv sync
# Build the UI
cd frontend/ui
npm ci && npm run build
cd ../..From PyPI:
pip install altk-evolveConfiguration
For direct OpenAI usage:
export OPENAI_API_KEY=sk-...Running Services
Start the Web UI and MCP server:
uv run evolve-mcpThe Web UI can be accessed from: http://127.0.0.1:8000/ui/
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"evolve": {
"command": "uv",
"args": ["run", "evolve-mcp"]
}
}
}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"]
}
}
}