nest-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
nest-mcp by btwld | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 7 | ★ 149 |
| 30d uses | — | — |
| Score | 41 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
nest-mcp · Summary
A NestJS-based framework for building MCP servers, clients and gateways with TypeScript decorators and dependency injection.
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.
nest-mcp · Use cases
- Building MCP servers that expose tools, resources and prompts for AI clients
- Creating MCP clients to integrate with existing MCP servers in NestJS applications
- Aggregating multiple MCP servers behind a unified gateway with prefixes and policies
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
nest-mcp · Install
Install the appropriate package for your use case:
# Server — expose tools/resources to AI clients
npm install @nest-mcp/server @modelcontextprotocol/sdk zod@^4
# Client — call tools on a remote MCP server
npm install @nest-mcp/client @modelcontextprotocol/sdk zod@^4
# Gateway — aggregate multiple servers into one
npm install @nest-mcp/gateway @modelcontextprotocol/sdk zod@^4
# Install NestJS peer dependencies if not already installed
npm install @nestjs/common @nestjs/core reflect-metadata rxjsFor Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"nest-mcp": {
"command": "node",
"args": ["path/to/your/server.js"]
}
}
}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