Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

grubhub_timepicker

Retrieve a restaurant's future Grubhub delivery or pickup time slots up to 7 days ahead, with timestamps and UTC offsets, to build an order scheduling picker.

Instructions

Get one Grubhub restaurant's future orderable time-slot calendar. Returns every future delivery or pickup time slot Grubhub will accept an order for, up to 7 days ahead. This is what powers the site's own "schedule my order" picker: /grubhub/availability tells you whether a restaurant is orderable right now plus one "next" time, while this returns the full future slot calendar a caller would need to build an actual date-and-time picker. Slots are grouped by date and given as full timestamps carrying the restaurant's real UTC offset for that instant, so a caller never has to resolve daylight-saving transitions themselves. Requesting location_mode=DELIVERY returns delivery slots only; PICKUP returns pickup slots only -- the upstream only computes one side per call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoHow many days ahead to fetch, 1-7 (default 7)
latitudeYesDiner location latitude
longitudeYesDiner location longitude
location_modeYesWhich slot grid to return
restaurant_idYesGrubhub restaurant id

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are present, so the description carries the full burden. It usefully discloses behavioral traits: it returns slots up to 7 days out, groups slots by date, uses full timestamps with the restaurant's real UTC offset so callers don't need to handle DST, and notes the upstream computes only one location_mode per call. It does not cover errors or pagination, but it provides far more behavioral context than most similar tools.

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

Conciseness5/5

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

Although the description is fairly long, every sentence earns its place: the core verb/resource, the return value scope, the sibling contrast, the timezone/DST behavior, and the location_mode semantics. It is front-loaded with purpose and is organized logically. No filler or repetition is present.

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?

Given five parameters, no annotations, and no output schema, the description is quite complete. It describes the return content (future delivery or pickup slots, grouped by date, full timestamps with UTC offset) and the calling constraint (one mode per call). Minor gaps such as pagination, error behavior, or what happens when no slots are available prevent a perfect score, but an agent can reasonably call the tool and understand its result.

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 coverage is already 100%, so the baseline is 3. The description adds real value beyond the schema by spelling out the exact meaning of location_mode ('DELIVERY returns delivery slots only; PICKUP returns pickup slots only') and by restating the days range with the default of 7. This extra parameter-level guidance is meaningful, though restaurant_id and coordinates are not further clarified because they are self-evident.

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 opens with a specific verb-and-resource statement: 'Get one Grubhub restaurant's future orderable time-slot calendar.' It also explicitly contrasts this tool with grubhub_availability, making it clear that this returns the full future slot calendar while grubhub_availability only gives current availability plus one next time. That sibling differentiation makes the purpose unmistakable.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: a caller needs this when they must build a date-and-time picker from a full future slot calendar. It names the alternative (grubhub_availability) and explains its narrower scope, and it further specifies the location_mode difference. No inference is required to choose between siblings.

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