get_product
Retrieve detailed product information using the product ID to manage inventory, orders, and product data efficiently within the ShipHero MCP Server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_id | Yes | The ID of the product to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"product_id": {
"description": "The ID of the product to retrieve",
"type": "string"
}
},
"required": [
"product_id"
],
"type": "object"
}