product_search
Search across e-commerce platforms using natural language queries to find products, track price history, and access detailed specifications.
Instructions
Product Search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query",
"examples": [
"iphone",
"護唇膏"
],
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "product_searchArguments",
"type": "object"
}