search_products
medplusmart.comSearches medicines and general products by name on https://www.medplusmart.com. Returns up to 30 paginated records with pricing, discounts, stock availability, pack details, manufacturer, composition, variants, and product/image URLs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches medicines and general products by name on https://www.medplusmart.com. Returns up to 30 paginated records with pricing, discounts, stock availability, pack details, manufacturer, composition, variants, and product/image URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"has_more": true,
"products": [
{
"price": 0,
"currency": "<string>",
"discount": "<string>",
"in_stock": true,
"image_url": "<string>",
"mrp_price": 0,
"pack_form": "<string>",
"pack_size": 0,
"audit_form": "<string>",
"product_id": "<string>",
"composition": "<string>",
"product_url": "<string>",
"variant_ids": [
"<string>"
],
"availability": "<string>",
"manufacturer": "<string>",
"max_quantity": 0,
"mrp_per_unit": 0,
"product_name": "<string>",
"product_type": "<string>",
"variant_name": "<string>",
"category_name": "<string>",
"purchase_status": "<string>",
"purchase_tenure": "<string>",
"discounted_price": 0,
"total_sale_count": 0,
"medicine_category": "<string>",
"is_general_product": true,
"is_medplus_product": true,
"membership_discount": "<string>",
"product_classification": "<string>",
"product_category_message": "<string>",
"membership_discounted_price": 0
}
],
"page_size": 0,
"returned_count": 0,
"search_page_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c9dc30df-5834-4599-835e-9a2aec6ba1c3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c9dc30df-5834-4599-835e-9a2aec6ba1c3",
"variables": {
"query": "paracetamol",
"page": 1,
"page_size": 30
}
}'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="c9dc30df-5834-4599-835e-9a2aec6ba1c3") — the "search_products" function, which searches medicines and general products by name on https://www.medplusmart.com. Returns up to 30 paginated records with pricing, discounts, stock availability, pack details, manufacturer, composition, variants, and product/image URLs.. It takes query (str), page (int), page_size (int). Return the result as structured JSON.