create_shipment
Generate and process shipment data in the ShipHero system using JSON input. Facilitates order management and logistics through the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shipment_data | Yes | JSON string containing the shipment data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shipment_data": {
"description": "JSON string containing the shipment data",
"type": "string"
}
},
"required": [
"shipment_data"
],
"type": "object"
}