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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Retrieve a list of products. Parameters: limit (number, optional) - Number of products to retrieve (maximum 250, default is 50).
Retrieve detailed information about a product. Parameters: product_id (string, required) - The ID of the product.
Create a new product. Parameters: title (string, required) - Product name; body_html (string, optional) - Product description in HTML; vendor (string, optional) - Vendor name; product_type (string, optional) - Type of product; tags (string, optional) - Tags (comma-separated); status (string, optional) - Status (active/draft/archived); variants (array, optional) - Variants; options (array, optional) - Options; images (array, optional) - Images.
Update an existing product. Parameters: product_id (string, required) - The ID of the product; title (string, optional) - Product name; body_html (string, optional) - Product description in HTML; vendor (string, optional) - Vendor name; product_type (string, optional) - Type of product; tags (string, optional) - Tags (comma-separated); status (string, optional) - Status (active/draft/archived); variants (array, optional) - Variants; options (array, optional) - Options; images (array, optional) - Images.
Delete a product. Parameters: product_id (string, required) - The ID of the product.