live · Commerce · JSON · API for agents
/Search the NETGEAR product catalog by keyword. Returns products with name, price, URL, image, and availability.
{
"name": "search-products",
"kind": "read",
"impl": "imperative",
"description": "Search the NETGEAR product catalog by keyword. Returns products with name, price, URL, image, and availability.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search keywords (e.g. \"mesh wifi\", \"gigabit switch\")"
},
"maxResults": {
"type": "integer",
"description": "Max results to return (1-50, default 10)",
"minimum": 1,
"maximum": 50
}
},
"required": [
"query"
]
},
"page": "/"
}Get the NETGEAR product category tree. Returns top-level and nested categories with IDs and URLs.
{
"name": "get-categories",
"kind": "read",
"impl": "imperative",
"description": "Get the NETGEAR product category tree. Returns top-level and nested categories with IDs and URLs.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}View current shopping cart contents including items, quantities, prices, and order total.
{
"name": "get-cart",
"kind": "read",
"impl": "imperative",
"description": "View current shopping cart contents including items, quantities, prices, and order total.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}/home/Add a product to the shopping cart by its product ID. Optionally specify quantity (default 1).
{
"name": "add-to-cart",
"kind": "write",
"impl": "imperative",
"description": "Add a product to the shopping cart by its product ID. Optionally specify quantity (default 1).",
"inputSchema": {
"type": "object",
"properties": {
"productId": {
"type": "string",
"description": "Product ID or SKU to add"
},
"quantity": {
"type": "number",
"description": "Quantity to add (default 1)"
}
},
"required": [
"productId"
]
},
"page": "/home/"
}/business/wired/switches/easy-smart/ms108eup/Get detailed information about the product currently being viewed, including name, description, price, availability, images, and specifications.
{
"name": "view-product",
"kind": "read",
"impl": "imperative",
"description": "Get detailed information about the product currently being viewed, including name, description, price, availability, images, and specifications.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/business/wired/switches/easy-smart/ms108eup/"
}