GetCurrencies
Fetch and filter currency data by specific fields like code. Sort or paginate results for precise retrieval. Integrates with Medusa MCP Server for efficient data management.
Instructions
Retrieve a list of currencies. The currencies can be filtered by fields such as code
. The currencies can also be sorted or paginated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
$and | No | ||
$or | No | ||
code | No | ||
fields | No | ||
limit | No | ||
offset | No | ||
order | No | ||
q | 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"
},
"code": {
"type": "string"
},
"fields": {
"type": "string"
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"order": {
"type": "string"
},
"q": {
"type": "string"
}
},
"type": "object"
}