get-products
Retrieve all products or search by title from a Shopify store using a MCP server. Specify a search term or fetch all entries with a set limit for efficient product management.
Instructions
Get all products or search by title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | Yes | Maximum number of products to return | |
searchTitle | No | Search title, if missing, will return all products |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of products to return",
"type": "number"
},
"searchTitle": {
"description": "Search title, if missing, will return all products",
"type": "string"
}
},
"required": [
"limit"
],
"type": "object"
}