get_product_inventory
Retrieve real-time inventory data for a specific product using its ID, enabling accurate stock management via the ShipBob API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | The ID of the product to check inventory for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"description": "The ID of the product to check inventory for",
"type": "string"
}
},
"required": [
"productId"
],
"type": "object"
}