create_product
Create and manage product details in the ShipStation API by submitting product data as a JSON string through the MCP server. Streamline inventory and order management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productData | Yes | JSON string containing the product data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productData": {
"description": "JSON string containing the product data",
"type": "string"
}
},
"required": [
"productData"
],
"type": "object"
}