shopify_get_product
Pack: shopify · Endpoint: https://gateway.pipeworx.io/shopify/mcp
Get a single product by ID from a Shopify store.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Shopify Admin API access token |
_shop | string | yes | Shop domain (e.g., mystore.myshopify.com) |
id | number | yes | Product ID |
Example call
Arguments
{
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"id": 632910392
}
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_get_product","arguments":{"_apiKey":"your-shopify-api-key","_shop":"mystore.myshopify.com","id":632910392}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('shopify_get_product', {
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"id": 632910392
});
Response shape
| Field | Type | Description |
|---|---|---|
product | object | Product details |
Full JSON Schema
{
"type": "object",
"properties": {
"product": {
"type": "object",
"description": "Product details",
"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.