MCP Catalogs
Home

shopify-mcp vs everything

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

shopify-mcp
by GeLi2001
everything
by modelcontextprotocol
Stars★ 209★ 85,748
30d uses
Score5177
Official
Categories
E-commerceDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

shopify-mcp · Summary

Shopify MCP server with comprehensive tools for managing products, customers, orders and more through GraphQL API.

everything · Summary

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

shopify-mcp · Use cases

  • E-commerce store owners managing products and inventory through AI assistants
  • Customer support teams retrieving order information and processing returns
  • Developers building automated workflows for Shopify store operations

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

shopify-mcp · Install

Installation

  1. Install Node.js (version 18 or higher)
  2. For Claude Desktop, add to your config file:
{
  "mcpServers": {
    "shopify": {
      "command": "npx",
      "args": [
        "shopify-mcp",
        "--clientId",
        "<YOUR_CLIENT_ID>",
        "--clientSecret",
        "<YOUR_CLIENT_SECRET>",
        "--domain",
        "<YOUR_SHOP>.myshopify.com"
      ]
    }
  }
}
  1. For Claude Code:
claude mcp add shopify -- npx shopify-mcp \
  --clientId YOUR_CLIENT_ID \
  --clientSecret YOUR_CLIENT_SECRET \
  --domain 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.