mcp-products-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-products-server by biobshub | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 0 | ★ 149 |
| 30d uses | — | — |
| Score | 33 | 85 |
| Official | — | — |
| Categories | DatabaseAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | — | Python |
| Last commit | 10 mo ago | 2 mo ago |
mcp-products-server · Summary
A .NET-based MCP server providing product search and marketing summary tools with Cosmos DB integration and a Blazor client UI.
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-products-server · Use cases
- E-commerce product discovery and marketing content generation
- AI-powered product recommendation systems
- Development and testing of MCP server integrations
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-products-server · Install
Installation
Prerequisites
- .NET 9.0 SDK
- Azure Cosmos DB account
- Azure OpenAI service (optional)
Setup
- Clone the repository:
git clone <repository-url>
cd mcp-products-server- Configure environment:
Create appsettings.Development.json with your Azure endpoints and configuration
- Run with .NET Aspire (recommended):
cd mcp-products-server.AppHost
dotnet runOr run components separately:
# Terminal 1: MCP Server
cd mcp-products-server
dotnet run
# Terminal 2: Blazor Client
cd mcp-products-client
dotnet runClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"products-server": {
"command": "dotnet",
"args": ["run"],
"cwd": "/path/to/mcp-products-server"
}
}
}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