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 uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 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-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"]
}
}
}ClaudeHistoryMCP · Install
Installation
- Clone and build the server:
git clone https://github.com/jhammant/ClaudeHistoryMCP.git
cd ClaudeHistoryMCP
npm install
npm run build- Build the search index:
npm run build-index- Register the MCP server with Claude:
claude mcp add claude-history -- node "/path/to/ClaudeHistoryMCP/dist/index.js"- Install the session-start hook (optional):
npm run install-hook- 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