shopify_list_orders
Pack: shopify · Endpoint: https://gateway.pipeworx.io/shopify/mcp
List orders from a Shopify store, optionally filtered by status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Shopify Admin API access token |
_shop | string | yes | Shop domain (e.g., mystore.myshopify.com) |
status | string | no | Filter by status: open, closed, cancelled, any (default: open) |
limit | number | no | Number of orders 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_orders","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_orders', {
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com"
});
More examples
{
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"status": "closed",
"limit": 75
}
Response shape
| Field | Type | Description |
|---|---|---|
orders | array | List of orders |
Full JSON Schema
{
"type": "object",
"properties": {
"orders": {
"type": "array",
"description": "List of orders",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Order ID"
},
"email": {
"type": "string",
"description": "Customer email"
},
"created_at": {
"type": "string",
"description": "Creation timestamp"
},
"updated_at": {
"type": "string",
"description": "Last update timestamp"
},
"order_number": {
"type": "number",
"description": "Order number"
},
"total_price": {
"type": "string",
"description": "Total order price"
},
"currency": {
"type": "string",
"description": "Currency code"
},
"financial_status": {
"type": "string",
"description": "Financial status"
},
"fulfillment_status": {
"type": [
"string",
"null"
],
"description": "Fulfillment status"
},
"customer": {
"type": "object",
"description": "Customer details"
}
}
}
}
}
}
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.