MCP Catalogs
Home

shopify-mcp vs memory

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

shopify-mcp
by GeLi2001
memory
by modelcontextprotocol
Stars★ 209★ 85,748
30d uses
Score5177
Official
Categories
E-commerceDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
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.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

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

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

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

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.