Shopify MCP Server

get-products

Get shopify products

Input Schema

NameRequiredDescriptionDefault
limitYesLimit
searchTitleNoSearch title, if missing, will return all products

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Limit", "type": "number" }, "searchTitle": { "description": "Search title, if missing, will return all products", "type": "string" } }, "required": [ "limit" ], "type": "object" }