Get Order is a WordPress ability from WooCommerce — usable via Easy MCP AI, which connects Claude, ChatGPT, and any AI assistant to your site.
Install Free Plugin →Get Order
Read-onlyFetch full details for a single WooCommerce order by its ID.
Requires the WooCommerce plugin active on WordPress 6.9+, with the experimental 'mcp_integration' feature flag enabled (WooCommerce > Settings > Advanced > Features). Abilities are only registered for requests hitting WooCommerce's own /woocommerce/mcp REST endpoint, and each request must authenticate with a WooCommerce REST API key (consumer_key:consumer_secret) sent via the X-MCP-API-Key header over HTTPS — the key's read/write permission scope must match the HTTP method used.
What it does
This ability retrieves one order record by ID through wc/v3/orders/{id}, returning the full order schema — status, currency, customer ID, billing and shipping addresses, payment method, line items, coupons applied, and computed totals. It takes only a required 'id' input; the route is built by appending the ID to the base orders route. The ability is registered read-only and cannot modify the order.
See it in action
You ask your AI assistant
"Get the full details of order #3021, including line items and shipping address."
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | The unique identifier of the order to retrieve. |
Returns
A single order object with the full WooCommerce order schema (status, billing/shipping, line items, totals, etc.).
Permission
Registered as a read-only (GET) operation. Requires a WooCommerce REST API key sent via the X-MCP-API-Key header over HTTPS with 'read' or 'read_write' permission scope.
More WooCommerce abilities
Create Order
Create a new WooCommerce order with customer, billing/shipping, and line item details.
Create Product
Create a new WooCommerce product with a name, price, description, and other catalog attributes.
Delete Product
Permanently delete a product from the WooCommerce catalog.
Get Product
Fetch full details for a single WooCommerce product by its ID.
List Orders
List and filter WooCommerce orders by status, customer, product, or date range.
List Products
List and filter your WooCommerce product catalog with paging, search, and attribute-based filters.