MCP Catalogs
Home

mcp-server-chart vs zotero-mcp

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

mcp-server-chart
by antvis
zotero-mcp
by kujenga
Stars★ 4,068★ 150
30d uses10,239
Score8442
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityAI / LLM ToolsKnowledge Graph
LanguageTypeScriptPython
Last committhis month12 mo ago

mcp-server-chart · Summary

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

zotero-mcp · Summary

Python MCP server for Zotero library integration with AI assistants

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

zotero-mcp · Use cases

  • AI research assistants searching and retrieving academic papers from Zotero libraries
  • Content creators summarizing and analyzing collections of PDF documents
  • Researchers organizing and referencing their Zotero collections in AI conversations

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

zotero-mcp · Install

Installation

**Using uvx with Local Zotero API:**

{
  "mcpServers": {
    "zotero": {
      "command": "uvx",
      "args": ["--upgrade", "zotero-mcp"],
      "env": {
        "ZOTERO_LOCAL": "true",
        "ZOTERO_API_KEY": "",
        "ZOTERO_LIBRARY_ID": ""
      }
    }
  }
}

**Using Docker with Zotero Web API:**

{
  "mcpServers": {
    "zotero": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", "ZOTERO_API_KEY=PLACEHOLDER",
        "-e", "ZOTERO_LIBRARY_ID=PLACEHOLDER",
        "ghcr.io/kujenga/zotero-mcp:main"
      ],
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.