MCP Catalogs
Home

mcp-server-chart vs opentargets-mcp

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

mcp-server-chart
by antvis
opentargets-mcp
by nickzren
Stars★ 4,068★ 17
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
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.

opentargets-mcp · Summary

MCP server providing access to Open Targets biomedical data through 68 curated tools and 3 advanced GraphQL tools.

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

opentargets-mcp · Use cases

  • Prioritizing drug targets by analyzing target-disease associations across 22+ data sources
  • Repurposing existing drugs for new diseases by exploring multi-hop disease-target-drug evidence chains
  • Validating genetic variants by accessing GWAS studies with L2G predictions and fine-mapped loci

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

opentargets-mcp · Install

Installation

Using mcpm (Recommended for Claude Desktop)

pip install mcpm
mcpm install opentargets

Using uvx (No installation required)

uvx --from git+https://github.com/nickzren/opentargets-mcp opentargets-mcp

Local Development

git clone https://github.com/nickzren/opentargets-mcp
cd opentargets-mcp
pip install uv
uv sync
uv run python -m opentargets_mcp.server

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "opentargets": {
      "command": "uv",
      "args": ["run", "python", "-m", "opentargets_mcp.server", "--transport", "stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.