shopify_list_products
Pack: shopify · Endpoint: https://gateway.pipeworx.io/shopify/mcp
List products from a Shopify store. Returns up to 50 products by default.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Shopify Admin API access token |
_shop | string | yes | Shop domain (e.g., mystore.myshopify.com) |
limit | number | no | Number of products to return (max 250, default 50) |
Example call
Arguments
{
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com"
}
curl
curl -X POST https://gateway.pipeworx.io/shopify/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"shopify_list_products","arguments":{"_apiKey":"your-shopify-api-key","_shop":"mystore.myshopify.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('shopify_list_products', {
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com"
});
More examples
{
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"limit": 100
}
Response shape
| Field | Type | Description |
|---|---|---|
products | array | List of products |
Full JSON Schema
{
"type": "object",
"properties": {
"products": {
"type": "array",
"description": "List of products",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Product ID"
},
"title": {
"type": "string",
"description": "Product title"
},
"handle": {
"type": "string",
"description": "Product handle/slug"
},
"body_html": {
"type": [
"string",
"null"
],
"description": "Product description HTML"
},
"vendor": {
"type": "string",
"description": "Product vendor"
},
"product_type": {
"type": "string",
"description": "Product type"
},
"created_at": {
"type": "string",
"description": "Creation timestamp"
},
"updated_at": {
"type": "string",
"description": "Last update timestamp"
},
"published_at": {
"type": [
"string",
"null"
],
"description": "Publication timestamp"
},
"tags": {
"type": "string",
"description": "Comma-separated tags"
},
"status": {
"type": "string",
"description": "Product status"
},
"variants": {
"type": "array",
"description": "Product variants"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"shopify": {
"url": "https://gateway.pipeworx.io/shopify/mcp"
}
}
}
See Getting Started for client-specific install steps.