shopify_get_order
Pack: shopify · Endpoint: https://gateway.pipeworx.io/shopify/mcp
Get a single order 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 | Order ID |
Example call
Arguments
{
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"id": 1071559878
}
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_order","arguments":{"_apiKey":"your-shopify-api-key","_shop":"mystore.myshopify.com","id":1071559878}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('shopify_get_order', {
"_apiKey": "your-shopify-api-key",
"_shop": "mystore.myshopify.com",
"id": 1071559878
});
Response shape
| Field | Type | Description |
|---|---|---|
order | object | Order details |
Full JSON Schema
{
"type": "object",
"properties": {
"order": {
"type": "object",
"description": "Order details",
"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"
},
"line_items": {
"type": "array",
"description": "Order line items"
}
}
}
}
}
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.