MCP Catalogs
Home

chatbot_Shopify vs everything

Side-by-side comparison to help you pick between these two MCP servers.

chatbot_Shopify
by Mobeen-Dev
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4377
Official
Categories
E-commerceAI / LLM ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit3 mo agothis month

chatbot_Shopify · Summary

Shopify chatbot with MCP integration that uses AI-powered conversations and agentic capabilities for seamless e-commerce experiences.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

chatbot_Shopify · Install

Installation

  1. Clone the repository:
git clone https://github.com/Mobeen-Dev/chatbot_Shopify.git
cd chatbot_Shopify
  1. Set up environment variables:
cp credentials/.env.example credentials/.env
# Edit credentials/.env with your API keys and configuration
  1. Set up prerequisites:
python -m ETL.pipeline --chunk_products --upload_chunks --start_embedding_job
  1. Start with Docker Compose:
docker-compose build
docker-compose up

Claude 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"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.