This MCP server implementation provides a bridge to the Shopify API, enabling AI assistants to interact with e-commerce data and operations. Developed by masashi kishimoto, it leverages the MCP framework and ShopifyAPI library to offer tools for managing products, orders, and customer information. The server is designed for use cases requiring integration with Shopify-powered online stores, such as automated inventory management or sales analysis.
No reviews yet. Be the first to review!
Sign in to join the conversation
Retrieve a list of products. Parameters: limit (integer) - the number of products to retrieve (maximum 250, default is 50)
Retrieve detailed information about a product. Parameters: product_id (string) - the ID of the product (required)
Create a new product. Parameters: title (string) - the name of the product (required), body_html (string) - the description of the product in HTML, vendor (string) - the vendor name, product_type (string) - the type of product, tags (string) - tags separated by commas, status (string) - the status (active/draft/archived), variants (array) - product variants, options (array) - product options, images (array) - product images
Update an existing product. Parameters: product_id (string) - the ID of the product (required), title (string) - the name of the product, body_html (string) - the description of the product in HTML, vendor (string) - the vendor name, product_type (string) - the type of product, tags (string) - tags separated by commas, status (string) - the status (active/draft/archived), variants (array) - product variants, options (array) - product options, images (array) - product images
Delete a product. Parameters: product_id (string) - the ID of the product (required)