clinicaltrialsgov-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
clinicaltrialsgov-mcp-server by cyanheads | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 71 | ★ 149 |
| 30d uses | — | — |
| Score | 48 | 85 |
| Official | — | — |
| Categories | healthcareDeveloper ToolsAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
clinicaltrialsgov-mcp-server · Summary
MCP server providing 7 tools for searching, retrieving, and matching clinical trials from ClinicalTrials.gov API.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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)
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server