Get Product 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 Product
Read-onlyFetch full details for a single WooCommerce product 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 product record by ID via the wc/v3/products/{id} REST endpoint, returning the complete product schema — name, slug, type, status, description, pricing, stock data, categories, tags, images, and attributes. It takes only a single required 'id' input, and the request route is built by appending that ID to the base products route. Because it's registered with a readonly annotation, this ability never changes store data.
See it in action
You ask your AI assistant
"Get the full details of product ID 482, including stock quantity and images."
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | The unique identifier of the product to retrieve. |
Returns
A single product object with the full WooCommerce product schema (name, prices, stock, categories, images, attributes, 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 Order
Fetch full details for a single WooCommerce order 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.