MCP Catalogs
Home

shopify-mcp vs filesystem

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

shopify-mcp
by GeLi2001
filesystem
by modelcontextprotocol
Stars★ 209★ 85,748
30d uses
Score5177
Official
Categories
E-commerceDeveloper ToolsProductivity
File SystemDeveloper 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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.