MCP Catalogs
Home

biomcp vs everything

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

biomcp
by genomoncology
everything
by modelcontextprotocol
Stars★ 507★ 85,748
30d uses
Score5377
Official
Categories
Knowledge GraphAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last commit1 mo agothis month

biomcp · Summary

BioMCP is a biomedical-focused MCP server that provides unified access to multiple biomedical data sources through a single command interface.

everything · Summary

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

biomcp · Use cases

  • Researchers performing literature reviews and meta-analysis across multiple biomedical databases
  • Clinicians seeking information about gene variants, drug interactions, and disease associations
  • Biomedical developers building applications that need to query multiple biomedical APIs

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

biomcp · Install

Binary install

curl -fsSL https://biomcp.org/install.sh | bash

PyPI tool install

uv tool install biomcp-cli
# or: pip install biomcp-cli

Claude Desktop extension

Install BioMCP from the Anthropic Directory in Claude Desktop.

MCP clients

{
  "mcpServers": {
    "biomcp": {
      "command": "biomcp",
      "args": ["serve"]
    }
  }
}

Remote HTTP server

biomcp serve-http --host 127.0.0.1 --port 8080

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.