list_product_categories
medplusmart.comLists every top-level product category and its nested subcategories from https://www.medplusmart.com. Returns category names, IDs, slugs, available top-level images, and direct page URLs with no input required.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_product_categories?
Lists every top-level product category and its nested subcategories from https://www.medplusmart.com. Returns category names, IDs, slugs, available top-level images, and direct page URLs with no input required. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"categories": [
{
"slug": "<string>",
"page_url": "<string>",
"image_url": "<string>",
"category_id": "<string>",
"category_name": "<string>",
"subcategories": [
{
"slug": "<string>",
"page_url": "<string>",
"image_url": "<string>",
"category_id": "<string>",
"category_name": "<string>",
"subcategories": [
{
"slug": "<string>",
"page_url": "<string>",
"image_url": "<string>",
"category_id": "<string>",
"category_name": "<string>"
}
]
}
]
}
],
"top_level_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/fdb8d5fe-c8a3-40bf-9e7b-b013d0c45738/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fdb8d5fe-c8a3-40bf-9e7b-b013d0c45738",
"variables": {}
}'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="fdb8d5fe-c8a3-40bf-9e7b-b013d0c45738") — the "list_product_categories" function, which lists every top-level product category and its nested subcategories from https://www.medplusmart.com. Returns category names, IDs, slugs, available top-level images, and direct page URLs with no input required.. It takes no parameters. Return the result as structured JSON.