MCP Catalogs
Home

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 uses10,239
Score4684
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis 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) or pip

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-evolve

Configuration

For direct OpenAI usage:

export OPENAI_API_KEY=sk-...

Running Services

Start the Web UI and MCP server:

uv run evolve-mcp

The 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-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.