MCP Catalogs
Home

healthcare-mcp-public vs everything

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

healthcare-mcp-public
by Cicatriiz
everything
by modelcontextprotocol
Stars★ 115★ 85,748
30d uses
Score4477
Official
Categories
healthcareAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit9 mo agothis month

healthcare-mcp-public · Summary

Healthcare MCP Server provides AI assistants with access to authoritative medical data including FDA drugs, PubMed, clinical trials, and medical calculators.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

healthcare-mcp-public · Use cases

  • Medical professionals researching drug information and clinical trials
  • AI assistants providing patients with evidence-based health information
  • Healthcare applications needing integration with medical terminology databases
  • Researchers searching medical literature and pre-prints from multiple sources

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

healthcare-mcp-public · Install

Installation Options

1. DXT Extension (Recommended)

  1. Download healthcare-mcp.dxt from this repository
  2. Open with your compatible MCP client (such as Claude Desktop)
  3. Follow the installation prompts

2. Via Smithery

npx -y @smithery/cli install @Cicatriiz/healthcare-mcp-public --client claude

3. npm Installation

npm install healthcare-mcp
npx healthcare-mcp

4. Manual Installation

git clone https://github.com/Cicatriiz/healthcare-mcp-public.git
cd healthcare-mcp-public/server
npm install
npm start

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "healthcare": {
      "command": "npx",
      "args": ["healthcare-mcp"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.