ultimate_mcp_server vs mcp-client-gen
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-client-gen by kriasoft | |
|---|---|---|
| Stars | ★ 149 | ★ 16 |
| 30d uses | — | — |
| Score | 85 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 4 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-client-gen · Summary
Tool to generate type-safe TypeScript clients for any MCP server with OAuth 2.1 support.
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-client-gen · Use cases
- Integrating MCP services into TypeScript applications with full type safety
- Rapidly prototyping MCP client implementations for new services
- Building applications that need to interact with multiple MCP servers consistently
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-client-gen · Install
# Install globally
npm install -g mcp-client-gen
# or
bun add -g mcp-client-gen
# Generate client from URL
npx mcp-client-gen https://mcp.notion.com/mcp -o notion.ts
# For Claude Desktop integration
# Add to claude_desktop_config.json:
"mcpServers": {
"mcpClientGen": {
"command": "npx",
"args": ["mcp-client-gen"]
}
}