Shopify MCP Server

Shopify MCP Server

wfilleman

Developer Tools
Visit Server

README

Shopify MCP Server

A Model Context Protocol (MCP) server for integrating Shopify operations with LLM agents. This server provides a set of tools for handling Shopify orders, including fulfillment, tracking, archiving, and retrieval.

Features

  • Request fulfillment for an order
  • Add tracking information to orders
  • Archive orders
  • Get details for a specific order
  • List all active orders

Setup

Prerequisites

  • Node.js 18 or higher
  • A Shopify store with API access

Installation

  1. Clone the repository:

    git clone https://github.com/yourusername/shopify-mcp-server.git
    cd shopify-mcp-server
    
  2. Install dependencies:

    npm install
    
  3. Create a .env file based on .env.example and add your Shopify API credentials:

    SHOPIFY_API_KEY=your_api_key
    SHOPIFY_API_SECRET=your_api_secret
    SHOPIFY_SCOPES=write_orders,read_orders
    SHOPIFY_SHOP=your-shop.myshopify.com
    SHOPIFY_ACCESS_TOKEN=your_access_token
    

Building and Running

  1. Build the project:

    npm run build
    
  2. Start the server:

    npm start
    
  3. For development with automatic rebuilding:

    npm run dev
    

Usage with LLM Agents

This server implements the Model Context Protocol (MCP) and exposes the following tools:

  • get-order-details: Get detailed information about a specific order (accepts friendly order numbers like "#1001")
  • get-active-orders: Get a list of all active orders
  • request-fulfillment: Fulfill an order with optional tracking information (accepts friendly order numbers)
  • add-tracking: Add tracking information to a fulfilled order
  • archive-order: Archive an order (accepts friendly order numbers)

Using Friendly Order Numbers

All tools that require an order ID now accept friendly order numbers:

  • #1001 - Order number with # prefix
  • 1001 - Order number without # prefix
  • Full Shopify ID (gid://shopify/Order/12345) - Still supported

The system will automatically look up the correct Shopify ID when you provide a friendly order number.

Updating Tracking Information

To update tracking information for an order, follow these steps:

  1. First, get the order details using get-order-details with the order number (e.g., #1001)
  2. From the response, find the fulfillment ID in the "Fulfillments" section
  3. Use the add-tracking tool with the fulfillment ID and tracking information:
    {
      "fulfillmentId": "gid://shopify/Fulfillment/123456789",
      "trackingNumber": "1Z999AA10123456789",
      "trackingCompany": "UPS",
      "trackingUrl": "https://www.ups.com/track?tracknum=1Z999AA10123456789",
      "notifyCustomer": true
    }
    

Technical Details

API Version Management

This server uses Shopify's LATEST_API_VERSION constant (currently 2025-01) to ensure compatibility with the newest API features. This future-proofs the application but may occasionally require schema adjustments when Shopify makes breaking changes to their API.

PII Handling

To support stores on all Shopify plans, this server avoids requesting personally identifiable information (PII) like customer details, emails, and addresses, which are restricted to higher-tier Shopify plans.

License

ISC

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python