MCP Catalogs
Home

everything vs fhir-mcp-server

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

everything
by modelcontextprotocol
fhir-mcp-server
by wso2
Stars★ 85,748★ 119
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM Toolshealthcare
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

fhir-mcp-server · Summary

FHIR MCP Server bridges healthcare FHIR APIs with AI tools via MCP protocol, enabling secure clinical data access.

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

fhir-mcp-server · Use cases

  • AI assistants accessing patient records through FHIR APIs in clinical settings
  • Healthcare analytics systems integrating clinical data with LLM-powered insights
  • Medical research tools querying FHIR repositories for patient cohorts and clinical data

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

fhir-mcp-server · Install

Installation Options

  1. **Using PyPI Package:**

```bash # Configure environment variables export FHIR_SERVER_BASE_URL="your_fhir_server_url" export FHIR_SERVER_CLIENT_ID="your_client_id" export FHIR_SERVER_CLIENT_SECRET="your_client_secret" export FHIR_SERVER_SCOPES="your_scopes"

# Install and run uvx fhir-mcp-server ```

  1. **Using Docker:**

``bash docker pull wso2/fhir-mcp-server:latest docker run --env-file .env -p 8000:8000 fhir-mcp-server ``

  1. **From Source:**

``bash git clone <repository_url> cd <repository_directory> uv venv source .venv/bin/activate uv pip sync requirements.txt cp .env.example .env uv run fhir-mcp-server ``

**Claude Desktop Configuration:**

{
    "mcpServers": {
        "fhir": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/fhir-mcp-server",
                "run",
                "fhir-mcp-server",
                "--transport",
                "stdio"
            ],
            "env": {
                "FHIR_SERVER_ACCESS_TOKEN": "Your FHIR Access Token"
            }
        }
    }
}
Comparison generated from public README + GitHub signals. Last updated automatically.