search_catalog_products
mechanicalkeyboards.comSearches products across the full catalog on https://mechanicalkeyboards.com by keyword, with optional brand and availability filters. Returns matching products with pricing, availability, vendor, image, and URL path fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog_products?
Searches products across the full catalog on https://mechanicalkeyboards.com by keyword, with optional brand and availability filters. Returns matching products with pricing, availability, vendor, image, and URL path fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, limit, brand, available_only, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"brand": "<string>",
"count": 0,
"limit": 0,
"keyword": "<string>",
"products": [
{}
],
"available_only": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/1cde4d22-6b94-4fce-84a0-113239981425/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1cde4d22-6b94-4fce-84a0-113239981425",
"variables": {
"keyword": "cherry",
"limit": 10,
"brand": "",
"available_only": false,
"timeout_seconds": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1cde4d22-6b94-4fce-84a0-113239981425") — the "search_catalog_products" function, which searches products across the full catalog on https://mechanicalkeyboards.com by keyword, with optional brand and availability filters. Returns matching products with pricing, availability, vendor, image, and URL path fields.. It takes keyword (str), limit (int), brand (str), available_only (bool), timeout_seconds (int). Return the result as structured JSON.