MCP Catalogs
Home

arxiv-mcp-server vs mcp-server-chart

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

arxiv-mcp-server
by 1Dark134
mcp-server-chart
by antvis
Stars★ 16★ 4,068
30d uses10,239
Score3984
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

arxiv-mcp-server · Summary

arXiv MCP server enabling AI assistants to search, retrieve, analyze, and summarize academic papers with advanced features.

mcp-server-chart · Summary

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

arxiv-mcp-server · Use cases

  • Researchers conducting literature reviews across academic papers
  • Academic institutions tracking research trends and citation patterns
  • AI assistants needing to access and summarize arXiv papers with context

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

arxiv-mcp-server · Install

Installation

Prerequisites

  • Linux, macOS, or Windows OS
  • Minimum Python/Node versions depending on chosen runtime
  • Sufficient disk space for paper data and indices
  • Network access for fetching arXiv data

Quick Install

  1. Download the latest release artifact for your platform from the releases page
  2. Extract the package to a directory of your choice
  3. Run the installer or setup script provided in the package
  4. Follow prompts to configure database paths, API keys, and AI settings

Docker Installation

docker run --rm -it -p 8080:8080 arxiv-mcp-server:latest

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "arxiv": {
      "command": "python",
      "args": ["-m", "arxiv_mcp.server"],
      "env": {}
    }
  }
}

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.