ai-agent-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
ai-agent-mcp by alexey-tyurin | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 4 | ★ 149 |
| 30d uses | — | — |
| Score | 33 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsSecurityDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 13 mo ago | 2 mo ago |
ai-agent-mcp · Summary
AI content moderation system using OpenAI's API through Google's ADK and MCP protocol.
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.
ai-agent-mcp · Use cases
- Educational platforms ensuring appropriate AI tutor interactions
- Customer service bots preventing abuse while maintaining helpful service
- Content generation tools filtering inappropriate creative content requests
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
ai-agent-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/alexey-tyurin/ai-agent-mcp.git
cd ai-agent-mcp- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Set your OpenAI API key:
export OPENAI_API_KEY="your-api-key-here"For Claude Desktop Integration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"ai-moderation": {
"command": "python",
"args": ["path/to/ai-agent-mcp/moderation_server_sse.py"]
}
}
}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