agora_search
Search for products in Agora MCP by specifying queries, price ranges, and sorting options. Retrieve results with pagination to discover and purchase items across the web.
Instructions
Search for products matching the query in Agora.
Args:
q: The search query.
count: The number of products to return per page.
page: The page number.
price_min: The minimum price. Optional
price_max: The maximum price. Optional
sort: The sort field: price:relevance.
order: The sort order: asc or desc.
Returns:
The search results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
order | No | desc | |
page | No | ||
price_max | No | ||
price_min | No | ||
q | Yes | ||
sort | No | relevance |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 20,
"title": "Count",
"type": "integer"
},
"order": {
"default": "desc",
"title": "Order",
"type": "string"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"price_max": {
"default": 100000,
"title": "Price Max",
"type": "integer"
},
"price_min": {
"default": 0,
"title": "Price Min",
"type": "integer"
},
"q": {
"title": "Q",
"type": "string"
},
"sort": {
"default": "relevance",
"title": "Sort",
"type": "string"
}
},
"required": [
"q"
],
"title": "agora_searchArguments",
"type": "object"
}