Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

zomato_search

Search Zomato restaurants in any city, with optional keyword filter for names, dishes, or cuisines. Returns detailed listings including ratings, costs, delivery times, and pagination for full city coverage.

Instructions

Search Zomato restaurants in a city. Returns restaurants in a Zomato city, optionally filtered by a keyword. With no query this reads Zomato's own city-wide delivery listing, which pages through an opaque cursor (~12 restaurants per page: pass a response's next_cursor back as cursor until has_more is false, which marks the end of the city's listing) and accepts Zomato's own sort and Pure Veg filters; with a query it uses Zomato's own keyword search across restaurant names, dishes, and cuisines, which returns a single unpaginated result set. Each restaurant carries its url (the value the restaurant and menu endpoints take), name, cuisines, cost for two, rating, distance from the city location, delivery time, whether Zomato currently delivers from it, whether the placement is promoted (sponsored), and — on the plain city-wide listing — Zomato's own headline offer badges.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesZomato public city slug, e.g. \
sortNoSort order for the city-wide listing (used only when query is omitted)
queryNoOptional keyword to search restaurant names, dishes, or cuisines by. Omit for the plain city-wide delivery listing.
cursorNoOpaque pagination cursor from a previous city-wide listing response's next_cursor. Carries its own sort/pure_veg selection, so pass it on its own.
pure_vegNoWhen true, restricts the city-wide listing to restaurants Zomato itself marks Pure Veg (used only when query is omitted)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description bears full responsibility for behavioral disclosure, and it does so thoroughly. It reveals pagination mechanics (opaque cursor, ~12 restaurants per page, next_cursor, has_more termination), the difference between paginated city-wide results and a single unpaginated keyword result set, and the exact set of fields each restaurant carries. This goes well beyond a basic read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but dense with essential information, front-loaded with the core purpose. It covers pagination, mode differences, filters, and return fields. Slight redundancy exists ('optionally filtered by a keyword' and later 'with a query...') but the information is well organized and every sentence contributes meaningful detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity—5 parameters, two distinct search modes, no output schema or annotations—the description covers all critical aspects: required city slug, pagination protocol, filter applicability, return fields, and how the results connect to sibling endpoints. An agent has enough context to invoke the tool correctly and interpret results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds meaningful inter-parameter context: cursor carries its own sort/pure_veg selection and should be passed alone, sort and pure_veg apply only when query is omitted, and query changes the response structure. This is genuine added value beyond the schema definitions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action and resource: 'Search Zomato restaurants in a city.' It clearly identifies the two modes (city-wide listing vs keyword search) and what each returns. The final sentence ties returned restaurant URLs to the separate restaurant and menu endpoints, distinguishing this tool from siblings like zomato_restaurant and zomato_restaurant_menu.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use each mode: omit query for the city-wide listing, include query for keyword search. It explains cursor pagination and when to pass it, plus which filters apply only to the city-wide listing. It does not explicitly name alternative tools or state conditions for preferring them, though it implies downstream use of restaurant/menu endpoints.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools