ultimate_mcp_server vs chatbot_Shopify
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | chatbot_Shopify by Mobeen-Dev | |
|---|---|---|
| Stars | ★ 149 | ★ 25 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | E-commerceAI / LLM ToolsCommunication |
| Language | Python | Python |
| Last commit | 2 mo ago | 3 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.
chatbot_Shopify · Summary
Shopify chatbot with MCP integration that uses AI-powered conversations and agentic capabilities for seamless e-commerce experiences.
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
chatbot_Shopify · Use cases
- Customer service automation for Shopify stores
- Intelligent product recommendations and discovery
- Shopping cart and checkout assistance
- Account management and order tracking
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_serverchatbot_Shopify · Install
Installation
- Clone the repository:
git clone https://github.com/Mobeen-Dev/chatbot_Shopify.git
cd chatbot_Shopify- Set up environment variables:
cp credentials/.env.example credentials/.env
# Edit credentials/.env with your API keys and configuration- Set up prerequisites:
python -m ETL.pipeline --chunk_products --upload_chunks --start_embedding_job- Start with Docker Compose:
docker-compose build
docker-compose upClaude Desktop Configuration
To use this MCP server with Claude Desktop, add the following to your Claude Desktop config.json:
{
"mcpServers": {
"shopify-chatbot": {
"command": "python",
"args": ["path/to/chatbot_Shopify/src/server.py"],
"env": {
"OPENAI_API_KEY": "your_openai_api_key",
"SHOPIFY_API_KEY": "your_shopify_api_key",
"SHOPIFY_API_SECRET": "your_shopify_secret",
"SHOPIFY_STORE_URL": "your_store.myshopify.com"
}
}
}
}