Tool tree
Replacement rechargeable batteries
get_page_contextAnswer
Read the current Battery Trader page title, URL, heading, and public catalog discovery links. Use this to understand which product or category the user is viewing.
View tool JSON
{
"name": "get_page_context",
"kind": "answer",
"impl": "imperative",
"description": "Read the current Battery Trader page title, URL, heading, and public catalog discovery links. Use this to understand which product or category the user is viewing.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}open_catalog_indexAction
Open the public LLM catalog index (llms.txt) or the store homepage so an agent can start product discovery.
View tool JSON
{
"name": "open_catalog_index",
"kind": "act",
"impl": "imperative",
"description": "Open the public LLM catalog index (llms.txt) or the store homepage so an agent can start product discovery.",
"inputSchema": {
"type": "object",
"properties": {
"target": {
"type": "string",
"enum": [
"llms",
"home",
"search"
],
"description": "llms opens /llms.txt, home opens the storefront, search opens advanced search."
}
},
"required": [
"target"
],
"additionalProperties": false
}
}search_catalogAnswer
Search the Battery Trader product catalog by keyword, model, SKU, or device name. Returns matching products and a results page URL.
View tool JSON
{
"name": "search_catalog",
"kind": "answer",
"impl": "imperative",
"description": "Search the Battery Trader product catalog by keyword, model, SKU, or device name. Returns matching products and a results page URL.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"description": "Search keywords, product model, or device name."
},
"navigate": {
"type": "boolean",
"description": "If true, open the search results page in this browser tab."
}
},
"required": [
"query"
],
"additionalProperties": false
}
}