MCP Catalogs
Home

mcp-server-chart vs deep-research

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

mcp-server-chart
by antvis
deep-research
by u14app
Stars★ 4,068★ 4,583
30d uses10,239
Score8456
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsKnowledge GraphProductivity
LanguageTypeScriptJavaScript
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.

deep-research · Summary

An MCP server for deep research using multiple LLMs with web search capabilities and local processing.

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 · Use cases

  • Academic research with LLM assistance
  • Market analysis and competitive intelligence
  • Content creation and knowledge synthesis
  • Technical documentation generation

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 · Install

Installation

Docker Deployment

docker pull xiangfa/deep-research:latest
docker run -d --name deep-research -p 3333:3000 xiangfa/deep-research

Local Development

git clone https://github.com/u14app/deep-research.git
cd deep-research
pnpm install
# Copy env.tpl to .env and configure your API keys
pnpm dev

Claude Desktop Configuration

Add to claude_desktop_config.json:

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