search_restaurants
menupages.comSearches the complete restaurant directory from https://menupages.com by restaurant name and/or location using case-insensitive substring matching. Returns every match with its Grubhub ID, name, street and full address, city, and state.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_restaurants?
Searches the complete restaurant directory from https://menupages.com by restaurant name and/or location using case-insensitive substring matching. Returns every match with its Grubhub ID, name, street and full address, city, and state. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass name, location and get the result back without maintaining a scraper.
Response
{
"match_count": 0,
"name_filter": "<string>",
"restaurants": [
{
"city": "<string>",
"name": "<string>",
"state": "<string>",
"address": "<string>",
"grubhub_id": "<string>",
"street_address": "<string>"
}
],
"directory_count": 0,
"location_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/242e97ec-de38-4337-991c-1dbd43283fd9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "242e97ec-de38-4337-991c-1dbd43283fd9",
"variables": {
"name": "1111 Peruvian Bistro",
"location": "Miami, FL"
}
}'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="242e97ec-de38-4337-991c-1dbd43283fd9") — the "search_restaurants" function, which searches the complete restaurant directory from https://menupages.com by restaurant name and/or location using case-insensitive substring matching. Returns every match with its Grubhub ID, name, street and full address, city, and state.. It takes name (str), location (str). Return the result as structured JSON.