MCP Catalogs
Home

mcp-server-chart vs archiledger

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

mcp-server-chart
by antvis
archiledger
by thecookiezen
Stars★ 4,068★ 5
30d uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptJava
Last committhis month1 mo ago

mcp-server-chart · Summary

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

archiledger · Summary

Archiledger is a graph-based MCP memory server with vector search capabilities for persistent AI knowledge storage.

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

archiledger · Use cases

  • Personal AI assistant with persistent memory across conversations
  • Codebase analysis and documentation into structured knowledge graphs
  • AI applications requiring semantic search and relationship discovery

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

archiledger · Install

Installation

Prerequisites

  • Java 21 or higher
  • Maven

Building

mvn clean package

Running Low-Level MCP Server

Transient (In-Memory):

java -jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar

Persistent:

java -Dladybugdb.data-path=./archiledger.lbdb 
     -jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "archiledger": {
      "command": "java",
      "args": ["-jar", "mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar"],
      "env": {
        "LADYBUGDB_DATA_PATH": "./archiledger.lbdb"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.