drio
Open app

Shopify MCP Server

Source

MCP Server for Shopify API, enabling interaction with store data through GraphQL API. This server provides tools for managing products, customers, orders, and more.

Catalog onlyCatalog onlySTDIO

Overview

Shopify MCP Server is a server designed to interact with Shopify's API, enabling users to manage store data through a GraphQL interface. It provides tools for handling products, customers, orders, and more.

To use the Shopify MCP Server, you need to create a custom app in your Shopify store to obtain an access token. After setting up the server, you can interact with it using various commands to manage your store data.

  • Product Management: Retrieve and manage product information. - Customer Management: Load and manage customer data. - Order Management: Advanced querying and filtering of orders. - GraphQL Integration: Direct integration with Shopify's GraphQL Admin API. - Comprehensive Error Handling: Clear error messages for API and authentication issues.
  1. Managing product inventories and details.
  2. Handling customer data and tagging.
  3. Processing and filtering orders efficiently.
  4. Creating and managing discounts and draft orders.

Add to your AI client

Use these steps to connect Shopify MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "shopify-mcp-server-main-rezapex": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "shopify-mcp-server-main-rezapex": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "shopify-mcp-server-main-rezapex": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "shopify-mcp-server-main-rezapex": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "shopify-mcp-server-main-rezapex": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "shopify-mcp-server-main-rezapex": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shopify-mcp-server-main-rezapex"
      ]
    }
  }
}

FAQ

Can I use this server with any Shopify store?

Yes! As long as you have a Shopify store and the necessary API access, you can use this server.

Is there a cost associated with using the Shopify MCP Server?

The server itself is free to use, but you may incur costs based on your Shopify plan.

What programming languages are supported?

The server is built using Node.js, so familiarity with JavaScript is beneficial.

Shopify MCP Server — MCP Registry