ultimate_mcp_server vs ai-agent-dev-week4-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | ai-agent-dev-week4-mcp-server by jmjmlang | |
|---|---|---|
| Stars | ★ 149 | ★ 0 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
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-dev-week4-mcp-server · Summary
An MCP server exposing a Person database with CRUD operations for AI agents using Next.js and Prisma.
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-dev-week4-mcp-server · Use cases
- Personal CRM assistant that can manage contact information
- Team management tool integrated with AI agents
- Automated contact sync between different systems
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_serverai-agent-dev-week4-mcp-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install - Set up your database: Add
DATABASE_URLto.envpointing to your Week 3 Neon database - Push database schema:
npx prisma db push - Run development server:
npm run dev
The server will be available at http://localhost:3000/api/mcp
API Key Setup
Generate an API key for a user:
npm run issue-key -- user@example.com "my laptop"Claude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"ai-agent-dev-week4": {
"command": "npx",
"args": ["ai-agent-dev-week4-mcp-server"],
"env": {
"DATABASE_URL": "your_database_url"
}
}
}
}VS Code Configuration
Copy .vscode/mcp.json into your workspace.