MCP Catalogs
Home

mcp-server-chart vs mcp-wayback-machine

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

mcp-server-chart
by antvis
mcp-wayback-machine
by Mearman
Stars★ 4,068★ 24
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Web ScrapingAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server-chart · Summary

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

mcp-wayback-machine · Summary

MCP server for Internet Archive's Wayback Machine with CDX search, snapshot retrieval, comparison and optional authentication.

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

mcp-wayback-machine · Use cases

  • Archiving web pages directly through AI assistants
  • Comparing how a website has changed over time
  • Searching for historical snapshots of specific URLs

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

mcp-wayback-machine · Install

Installation

For Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "wayback-machine": {
      "command": "npx",
      "args": ["-y", "mcp-wayback-machine"],
      "env": {
        "WAYBACK_ACCESS_KEY": "your-access-key",
        "WAYBACK_SECRET_KEY": "your-secret-key"
      }
    }
  }
}

CLI Shorthand

claude mcp add wayback-machine -- npx -y mcp-wayback-machine

Manual Configuration

For other harnesses, add to appropriate config file:

{
  "wayback-machine": {
    "command": "npx",
    "args": ["-y", "mcp-wayback-machine"],
    "env": {
      "WAYBACK_ACCESS_KEY": "your-access-key",
      "WAYBACK_SECRET_KEY": "your-secret-key"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.