Skip to main content
Glama

plan_day

Read-onlyIdempotent

Compose a food day for one city (read-only): one best-scored open venue per slot from morning to evening, filtered by neighbourhood, dietary need and price tier, every stop open on the given date, plus one bookable experience. Also lists the titles of the editorial itineraries for the city, which are the better plan when one exists (fetch them with itineraries).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesCity slug or name, e.g. 'new-york-city' or 'New York City'. Unknown cities answer with did_you_mean.
dateNoISO date, e.g. '2026-09-20'. Each stop is checked open at its slot time on that weekday.
countryYesCountry slug or name, e.g. 'italy'. Optional where city is given.
dietaryNovegan, vegetarian, gluten-free, halal, kosher...
price_tierNoThe site's tier symbols for the country, e.g. '€€' or '$$$'.
neighborhoodNoNeighbourhood name or slug to keep the day inside.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changed
    • addedInput schema / properties / city / description
      Added value: +"City slug or name, e.g. 'new-york-city' or 'New York City'. Unknown cities answer with did_you_mean."
    • addedInput schema / properties / country / description
      Added value: +"Country slug or name, e.g. 'italy'. Optional where city is given."
    • addedInput schema / properties / date / description
      Added value: +"ISO date, e.g. '2026-09-20'. Each stop is checked open at its slot time on that weekday."
    • addedInput schema / properties / dietary / description
      Added value: +"vegan, vegetarian, gluten-free, halal, kosher..."
    • addedInput schema / properties / neighborhood / description
      Added value: +"Neighbourhood name or slug to keep the day inside."
    • addedInput schema / properties / price_tier / description
      Added value: +"The site's tier symbols for the country, e.g. '€€' or '$$$'."
  2. Added

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds substantial behavioral context beyond these: it specifies the selection algorithm (one best-scored open venue per slot), the availability check (every stop open on the given date), the inclusion of a bookable experience, and the behavior of also listing itinerary titles. This is rich, non-redundant behavioral disclosure that helps the agent predict outcomes.

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?

The description is a single, information-dense sentence that front-loads the core action and criteria, then appends the alternative guidance. There is no filler or repetition; every clause adds value. It is appropriately sized for the tool's complexity.

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 (6 parameters, no output schema, no nested objects), the description covers what the agent needs to call it correctly: what it returns (venue-per-slot plan plus a bookable experience and itinerary titles), when to prefer the alternative, and the filters. It does not explain return formats, but the absence of an output schema makes the description's summary of results sufficient.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents all six parameters. The description repeats the filter concepts (neighbourhood, dietary need, price tier) but adds no syntax, formatting, or edge-case details beyond what the schema provides. It does not compensate for anything missing, so the baseline 3 is appropriate.

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 verb ('Compose'), a precise resource ('a food day for one city'), and enumerates the selection criteria (best-scored open venue per slot, filtered by neighbourhood, dietary need, price tier, open on date, plus one bookable experience). It also names the sibling alternative (`itineraries`) and the condition that selects it, making the purpose unambiguous and distinct from the other 9 tools.

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 explicitly says the editorial itineraries are 'the better plan when one exists' and directs the agent to fetch them with `itineraries`. This is an explicit when-to-use/when-not-to-use directive with a named alternative, exceeding the minimum bar for usage guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources