api200 vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
api200 by API-200 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 255 | ★ 149 |
| 30d uses | — | — |
| Score | 43 | 85 |
| Official | — | — |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 12 mo ago | 2 mo ago |
api200 · Summary
API200 is an API gateway with MCP server integration for managing third-party APIs with authentication, caching, and monitoring.
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.
api200 · Use cases
- Centralizing multiple API access points behind a single gateway
- Adding MCP server capabilities to existing API management infrastructure
- Creating mock API endpoints for development and testing
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
api200 · Install
Installation via Claude Desktop
Add the following configuration to Claude Desktop settings:
{
"mcpServers": {
"api200": {
"command": "npx",
"args": [
"api200-mcp@latest"
],
"env": {
"USER_KEY": "your-api-key-here"
}
}
}
}Self-Hosted Installation
- Clone the repository and install dependencies
git clone https://github.com/API-200/api200-selfhosted
cd api200-selfhosted
npm i- Run setup script
# For localhost (admin privileges recommended):
sudo node setup.js
# OR for non-localhost:
node setup.js- Start services
docker-compose up -dAccess at:
- Frontend:
http://<your-hostname-or-ip>:3000 - API Handler:
http://<your-hostname-or-ip>:8080
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