MCP Catalogs
Home

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 uses10,239
Score8438
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptPython
Last committhis month7 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-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"]
    }
  }
}

ReasoningBank-MCP · Install

Installation

  1. Clone and navigate to the repository:
git clone https://github.com/hanw39/ReasoningBank-MCP.git
cd ReasoningBank-MCP
  1. 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"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.