everything vs clintrials-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | clintrials-mcp by plainyogurt21 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolshealthDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
clintrials-mcp · Summary
MCP server providing structured access to ClinicalTrials.gov data with search, retrieval, and analysis capabilities.
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
clintrials-mcp · Use cases
- Medical researchers can quickly find relevant clinical trials by condition, intervention, or sponsor
- Healthcare professionals can retrieve detailed trial information including eligibility criteria and results
- Data analysts can examine statistical distributions of trial phases and other parameters across studies
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-everythingclintrials-mcp · Install
Installation
- Install dependencies:
pip install -r requirements.txt- Run the MCP server:
python mcp_server.pyClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"clintrials": {
"command": "python",
"args": ["mcp_server.py"]
}
}
}Alternative Deployments
The server can be deployed to AWS Lambda, Railway, Render, or run locally with Cloudflare Tunnel.