Skip to content

mwg2016/mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shopify MCP Server

A Model Context Protocol (MCP) server that provides integration with Shopify for product listing and search functionality.

Features

  • List Products: Retrieve a list of products from your Shopify store
  • Search Products: Search products by title or handle

Prerequisites

  • Node.js 18 or higher
  • A Shopify store with Admin API access
  • Shopify access token with appropriate permissions

Setup

  1. Clone this repository

  2. Install dependencies:

    npm install
  3. Copy .env.example to .env and fill in your Shopify credentials:

    cp .env.example .env

    Then edit .env with your actual values:

    SHOPIFY_STORE_DOMAIN=your-store.myshopify.com
    SHOPIFY_ACCESS_TOKEN=your-access-token
  4. Build the project:

    npm run build

Usage

With Claude Desktop

Add the server to your Claude Desktop configuration:

{
  "mcpServers": {
    "shopify": {
      "command": "node",
      "args": ["/path/to/your/mcp/build/index.js"],
      "env": {
        "SHOPIFY_STORE_DOMAIN": "your-store.myshopify.com",
        "SHOPIFY_ACCESS_TOKEN": "your-access-token"
      }
    }
  }
}

Direct execution

You can also run the server directly:

SHOPIFY_STORE_DOMAIN=your-store.myshopify.com SHOPIFY_ACCESS_TOKEN=your-token node build/index.js

Available Tools

list_products

Lists products from the Shopify store.

Parameters:

  • limit (optional): Number of products to return (max 250, default 50)
  • page (optional): Page number for pagination (default 1)

search_products

Searches products by title or handle.

Parameters:

  • query (required): Search query
  • limit (optional): Number of products to return (max 250, default 50)

Development

To modify the server:

  1. Edit files in the src/ directory
  2. Run npm run build to compile TypeScript
  3. Test your changes

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors