MCP Catalogs
Home

mcp-server-chart vs deep-research-mcp-server

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

mcp-server-chart
by antvis
deep-research-mcp-server
by ssdeanx
Stars★ 4,068★ 70
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month9 mo ago

mcp-server-chart · Summary

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

deep-research-mcp-server · Summary

MCP server for deep research using Google Gemini 2.5 Flash, providing iterative research capabilities with web grounding.

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

deep-research-mcp-server · Use cases

  • Conducting in-depth research on complex technical topics with iterative refinement
  • Generating comprehensive research reports with citations and methodology
  • Integrating advanced research capabilities into AI agent workflows via MCP

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

deep-research-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/ssdeanx/deep-research-mcp-server
cd deep-research-mcp-server
  1. Install dependencies:
npm install
  1. Set up environment variables:

Create a .env.local file with:

GEMINI_API_KEY="your_gemini_key"
GEMINI_MODEL=gemini-2.5-flash
CONCURRENCY_LIMIT=5
  1. Build the project:
npm run build
  1. Run as MCP server:
node --env-file .env.local dist/mcp-server.js

**Claude Desktop Configuration:** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "deep-research": {
      "command": "node",
      "args": ["--env-file", ".env.local", "dist/mcp-server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.