Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

foodpanda_restaurant

Retrieve detailed information for a specific foodpanda restaurant using its unique code. Get name, address, rating, cuisines, delivery fees, and more in clean JSON.

Instructions

Get one foodpanda restaurant's detail. Returns one foodpanda restaurant's detail by code: name, address, coordinates, budget tier, rating and review count, cuisines, minimum order amount, minimum delivery fee, delivery/pickup availability, timezone, and a hero image. Supplying latitude and longitude only affects the (optional) computed fields the upstream itself returns for that coordinate; it does not filter or reject the lookup.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesRestaurant code, from /foodpanda/search's code field
marketNoDelivery Hero market the restaurant belongs to. Defaults to sg.
latitudeNoCaller latitude, optional
longitudeNoCaller longitude, optional

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations present, the description carries the behavioral burden, and it does this well by disclosing the non-filtering behavior of coordinate parameters and the fact that those coordinates only affect upstream computed fields. It also clarifies the operation is a read-style 'Get' returning a fixed set of fields, though it does not cover edge cases like not-found behavior or response format.

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 compact and information-dense, front-loading the operation and then listing return fields. It loses one point because the first sentence ('Get one foodpanda restaurant's detail') is nearly redundant with the start of the second sentence, adding slight repetition without new information.

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

Completeness4/5

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

For a single-resource detail endpoint, the description is largely complete: it lists the returned fields, clarifies coordinate semantics, and the schema covers the market default and code provenance. It does not describe output shape or error behavior, but there is no output schema and the operation is simple enough that these are acceptable gaps.

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, but the description adds meaningful semantics beyond the schema by explaining that latitude and longitude do not filter or reject the lookup and only influence optional computed fields. The 'by code' phrasing clarifies the code parameter's role as the lookup key.

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 names a specific verb and resource ('Get one foodpanda restaurant's detail') and enumerates the exact return fields, so an agent knows this is the single-restaurant detail lookup rather than a menu, reviews, or search tool. This differentiates it from siblings like foodpanda_restaurant_menu, foodpanda_restaurant_reviews, and foodpanda_search without needing to open their schemas.

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

Usage Guidelines3/5

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

The description makes it clear this is a detail-by-code lookup and gives an important usage caveat about latitude/longitude not filtering or rejecting the lookup. However, it never explicitly states when to prefer this tool over alternatives such as the menu, reviews, or search siblings, or instructs the agent to obtain the code from foodpanda_search first (that provenance appears only in the schema).

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