chatbot_Shopify vs memory
Side-by-side comparison to help you pick between these two MCP servers.
chatbot_Shopify by Mobeen-Dev | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsCommunication | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
chatbot_Shopify · Summary
Shopify chatbot with MCP integration that uses AI-powered conversations and agentic capabilities for seamless e-commerce experiences.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
chatbot_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"
}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}