MCP Catalogs
Home

mcp-server-chart vs ClaudeHistoryMCP

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
ClaudeHistoryMCP
by jhammant
Stars★ 4,068★ 65
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsSearch
LanguageTypeScriptTypeScript
Last committhis month3 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

ClaudeHistoryMCP · Summary

MCP server for searching Claude Code conversation history with hybrid BM25 + TF-IDF search and knowledge extraction.

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

ClaudeHistoryMCP · Use cases

  • Debugging recurring issues by searching past solutions to similar problems
  • Retrieving project decisions and context when starting new sessions
  • Discovering patterns in development workflows across multiple projects

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"]
    }
  }
}

ClaudeHistoryMCP · Install

Installation

  1. Clone and build the server:
git clone https://github.com/jhammant/ClaudeHistoryMCP.git
cd ClaudeHistoryMCP
npm install
npm run build
  1. Build the search index:
npm run build-index
  1. Register the MCP server with Claude:
claude mcp add claude-history -- node "/path/to/ClaudeHistoryMCP/dist/index.js"
  1. Install the session-start hook (optional):
npm run install-hook
  1. Add to your global CLAUDE.md (recommended):
## Claude History MCP

When the `claude-history` MCP is available, use it proactively:
- **Session start**: Use `get_project_context` to check for prior decisions, patterns, and recent session summaries
- **Debugging**: Use `find_solutions` to search history for past fixes before starting from scratch
Comparison generated from public README + GitHub signals. Last updated automatically.