mcp-server-chart vs ReasoningBank-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ReasoningBank-MCP by hanw39 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 9 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ReasoningBank-MCP · Summary
A production-ready MCP server implementing ReasoningBank: Memory as Test-Time Compute Scaling for AI agents to evolve reasoning capabilities through experience.
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
ReasoningBank-MCP · Use cases
- Long-running AI agents that accumulate experience over multiple interactions
- Multi-agent systems where different agents need isolated memory pools
- Complex problem-solving domains where past successful strategies should inform future approaches
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"]
}
}
}ReasoningBank-MCP · Install
Installation
- Clone and navigate to the repository:
git clone https://github.com/hanw39/ReasoningBank-MCP.git
cd ReasoningBank-MCP- Install dependencies:
pip install -e .Claude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"reasoning-bank": {
"command": "reasoning-bank-mcp",
"env": {
"DASHSCOPE_API_KEY": "your_dashscope_api_key"
}
}
}
}Or for SSE mode:
{
"mcpServers": {
"reasoning-bank": {
"url": "http://127.0.0.1:8000/sse"
}
}
}