GetShippingOptions
Retrieve and manage shipping options for a cart using a cart ID, with support for sorting, pagination, and customizable fields. Streamline shipping logistics through Medusa MCP Server integration.
Instructions
Retrieve a list of shipping options for a cart. The cart's ID is set in the required cart_id
query parameter.
The shipping options also be sorted or paginated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
$and | No | ||
$or | No | ||
cart_id | No | ||
fields | No | ||
is_return | No | ||
limit | No | ||
offset | No | ||
order | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"$and": {
"items": {
"type": "string"
},
"type": "array"
},
"$or": {
"items": {
"type": "string"
},
"type": "array"
},
"cart_id": {
"type": "string"
},
"fields": {
"type": "string"
},
"is_return": {
"type": "boolean"
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"order": {
"type": "string"
}
},
"type": "object"
}