MCP Catalogs
Home

mcp-server-chart vs clinicaltrialsgov-mcp-server

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

mcp-server-chart
by antvis
clinicaltrialsgov-mcp-server
by cyanheads
Stars★ 4,068★ 71
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
healthcareDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
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.

clinicaltrialsgov-mcp-server · Summary

MCP server providing 7 tools for searching, retrieving, and matching clinical trials from ClinicalTrials.gov API.

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

clinicaltrialsgov-mcp-server · Use cases

  • Medical researchers can search for relevant clinical trials based on specific conditions or interventions
  • Healthcare providers can match patient demographics and conditions to recruiting trials
  • Data analysts can explore clinical trial landscapes using count and search tools for research insights

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

clinicaltrialsgov-mcp-server · Install

Installation

Public Hosted Instance

A public instance is available at https://clinicaltrials.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:

{
  "mcpServers": {
    "clinicaltrialsgov-mcp-server": {
      "type": "streamable-http",
      "url": "https://clinicaltrials.caseyjhand.com/mcp"
    }
  }
}

Self-Hosted / Local

Add to your MCP client config (e.g., claude_desktop_config.json):

{
  "mcpServers": {
    "clinicaltrialsgov-mcp-server": {
      "type": "stdio",
      "command": "bunx",
      "args": ["clinicaltrialsgov-mcp-server@latest"],
      "env": {
        "MCP_TRANSPORT_TYPE": "stdio"
      }
    }
  }
}

Prerequisites

  • [Bun v1.3.0](https://bun.sh/) or higher (or Node.js >= 24.0.0)
Comparison generated from public README + GitHub signals. Last updated automatically.