ultimate_mcp_server vs MCP-Clinic-Bot
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | MCP-Clinic-Bot by sankett13 | |
|---|---|---|
| Stars | ★ 149 | ★ 4 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolshealthcareProductivity |
| Language | Python | JavaScript |
| Last commit | 2 mo ago | 10 mo ago |
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.
MCP-Clinic-Bot · Summary
AI-powered medical chatbot using MCP with Google Gemini, ChromaDB vector search, and React frontend.
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
MCP-Clinic-Bot · Use cases
- Medical clinic front desk automation for appointment scheduling
- 24/7 patient information assistant for healthcare providers
- Clinic information retrieval system using vector search
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_serverMCP-Clinic-Bot · Install
Installation
Prerequisites
- Node.js (v18 or higher)
- MongoDB (local or cloud instance)
- Google Gemini API key
- npm or yarn package manager
Backend Setup
cd backend
npm installCreate a .env file in the backend directory:
GEMINI_API_KEY=your_gemini_api_key
MONGODB_URI=mongodb://localhost:27017/clinic_chatbot
PORT=5000Frontend Setup
cd frontend/mcp_chatbot
npm installStart the Application
**Backend:**
cd backend
npm run dev**Frontend:**
cd frontend/mcp_chatbot
npm run dev**MCP Server Inspector (Optional):**
cd backend
npm run inspectorFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"clinic-bot": {
"command": "node",
"args": ["backend/mcpServer.js"]
}
}
}