GetCustomersMeAddresses
Retrieve and filter customer addresses by fields like country_code, city, or postal_code. Sort, paginate, and manage address data efficiently using the Medusa MCP Server.
Instructions
Retrieve the addresses of the logged-in customer. The addresses can be filtered by fields such as country_code
. The addresses can also be sorted or paginated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | No | ||
country_code | No | ||
fields | No | ||
limit | No | ||
offset | No | ||
order | No | ||
postal_code | No | ||
q | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"type": "string"
},
"country_code": {
"type": "string"
},
"fields": {
"type": "string"
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"order": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"q": {
"type": "string"
}
},
"type": "object"
}