get_product
Retrieve detailed product information by specifying a unique product ID using the ShipStation API MCP Server for efficient product management and data access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | Product ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"description": "Product ID to retrieve",
"type": "number"
}
},
"required": [
"productId"
],
"type": "object"
}