{
  "info": {
    "name": "Shopify — mcp.ai",
    "description": "REST API for the Shopify MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/shopify",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "shopify_add_product_to_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/product/to/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "product",
            "to",
            "collection"
          ]
        },
        "description": "Adds a product to an existing *custom collection*, optionally specifying its `position` if the collection is manually sorted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"position\": 0,\n  \"product_id\": 0,\n  \"collection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_count_product_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/count/product/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "count",
            "product",
            "images"
          ]
        },
        "description": "Retrieves the total count of images for a shopify product, useful for inventory management or display logic; the provided `product id` must exist in the store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_create_custom_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/custom/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "custom",
            "collection"
          ]
        },
        "description": "Creates a new custom collection in a shopify store, requiring a unique title for manually curated product groupings (e.g., 'new arrivals', 'seasonal specials').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_create_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "customer"
          ]
        },
        "description": "Tool to create a new customer in shopify. use when you need to add a new customer record to the store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"tags\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"password\": \"\",\n  \"addresses\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"verified_email\": false,\n  \"send_email_invite\": false,\n  \"send_email_welcome\": false,\n  \"password_confirmation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_create_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "order"
          ]
        },
        "description": "Creates a new order in shopify, typically requiring line items; if `customer id` is provided, it must correspond to an existing customer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"currency\": \"\",\n  \"total_tax\": 0,\n  \"line_items\": \"\",\n  \"customer_id\": \"\",\n  \"transactions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_create_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "product"
          ]
        },
        "description": "Creates a new product in a shopify store; a product title is generally required.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"vendor\": \"\",\n  \"variants\": \"\",\n  \"body_html\": \"\",\n  \"product_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_create_product_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/product/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "product",
            "image"
          ]
        },
        "description": "Tool to create a new product image for a given product. use when you need to add an image to a product by providing the image source url or attachment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image\": {},\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_delete_custom_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/custom/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "custom",
            "collection"
          ]
        },
        "description": "Permanently deletes a custom collection from a shopify store using its `collection id`; this action is irreversible and requires a valid, existing `collection id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_delete_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "product"
          ]
        },
        "description": "Deletes a specific, existing product from a shopify store using its unique product id; this action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_delete_product_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/product/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "product",
            "image"
          ]
        },
        "description": "Deletes a specific image from a product in shopify, requiring the `product id` of an existing product and the `image id` of an image currently associated with that product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_id\": \"\",\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_all_customers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/customers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "customers"
          ]
        },
        "description": "Retrieves customer records from a shopify store, with options for filtering, selecting specific fields, and paginating through the results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"since_id\": \"\",\n  \"created_at_max\": \"\",\n  \"created_at_min\": \"\",\n  \"updated_at_max\": \"\",\n  \"updated_at_min\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_collection_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collection/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collection",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a specific shopify collection by its `collection id`, optionally filtering returned data to specified `fields`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_collects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collects"
          ]
        },
        "description": "Retrieves a list of collects from a shopify store, where a collect links a product to a custom collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"since_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_collects_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collects/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collects",
            "count"
          ]
        },
        "description": "Retrieves the total count of collects (product-to-collection associations) in a shopify store.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_custom_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "collections"
          ]
        },
        "description": "Retrieves a list of custom collections from a shopify store, optionally filtered by ids, product id, or handle.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"limit\": 0,\n  \"handle\": \"\",\n  \"product_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_custom_collections_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/collections/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "collections",
            "count"
          ]
        },
        "description": "Retrieves the total number of custom collections in a shopify store.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "customer"
          ]
        },
        "description": "Retrieves detailed information for a specific customer from a shopify store, provided their valid and existing `customer id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_customer_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/customer/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "customer",
            "orders"
          ]
        },
        "description": "Retrieves all orders for a specific, existing customer in shopify using their unique customer id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_order_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/order/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "order",
            "list"
          ]
        },
        "description": "Retrieves a list of orders from shopify using default api settings and filters.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_ordersby_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ordersby/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ordersby",
            "id"
          ]
        },
        "description": "Retrieves a specific shopify order by its unique id, which must correspond to an existing order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "product"
          ]
        },
        "description": "Retrieves details for an existing shopify product using its unique product id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_product_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/product/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "product",
            "image"
          ]
        },
        "description": "Retrieves detailed information for a specific product image, identified by its id and its associated product id, from a shopify store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_id\": \"\",\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_product_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/product/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "product",
            "images"
          ]
        },
        "description": "Retrieves all images for a shopify product, specified by its `product id` which must correspond to an existing product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"since_id\": \"\",\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "products"
          ]
        },
        "description": "Retrieves a list of products from a shopify store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_products_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/products/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "products",
            "count"
          ]
        },
        "description": "Retrieves the total, unfiltered count of all products in a shopify store.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_products_in_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/products/in/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "products",
            "in",
            "collection"
          ]
        },
        "description": "Retrieves all products within a specified shopify collection, requiring a valid `collection id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_get_shop_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shop/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shop",
            "details"
          ]
        },
        "description": "Retrieves comprehensive administrative information about the authenticated shopify store, as defined by the shopify api.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "shopify_update_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "order"
          ]
        },
        "description": "Updates the phone number for an existing shopify order, identified by its id; pass `phone=none` to remove the current phone number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"phone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}