Shopify MCP Server

MIT License
76

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

NameRequiredDescriptionDefault
limitYesMaximum number of products to return
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": "Maximum number of products to return", "type": "number" }, "searchTitle": { "description": "Search title, if missing, will return all products", "type": "string" } }, "required": [ "limit" ], "type": "object" }
ID: ir51o8mbqz