get-collections
Retrieve Shopify store collections by specifying search criteria and result limits, enabling data management through Shopify MCP Server’s GraphQL API.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| limit | No | ||
| searchTitle | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "limit": {
      "default": 10,
      "type": "number"
    },
    "searchTitle": {
      "type": "string"
    }
  },
  "type": "object"
}