MCP Catalogs
Home

memora vs mcp-server-chart

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

memora
by agentic-box
mcp-server-chart
by antvis
Stars★ 405★ 4,068
30d uses10,239
Score5384
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

memora · Summary

A lightweight MCP server for semantic memory storage, knowledge graphs, and persistent memory for AI agents.

mcp-server-chart · Summary

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

memora · Use cases

  • Building long-term memory for AI agents that persist across sessions
  • Creating personal knowledge graphs with automatic memory linking and relationships
  • Developing AI-powered note-taking applications with semantic search capabilities

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

memora · Install

Installation

pip install git+https://github.com/agentic-box/memora.git

With Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "memora": {
      "command": "memora-server",
      "args": [],
      "env": {
        "MEMORA_DB_PATH": "~/.local/share/memora/memories.db",
        "MEMORA_ALLOW_ANY_TAG": "1"
      }
    }
  }
}

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.