Skip to main content
Glama

Log Restaurant

log_restaurant

Record restaurants as visited or wishlist entries with cuisine, city, ratings, dishes, and notes to build a personal dining journal.

Instructions

Log a restaurant or dining experience in dining journal or wishlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesCity where located (e.g. 'Tokyo', 'London', 'San Francisco').
nameYesName of the restaurant or establishment.
statusNo'visited' or 'wishlist'.wishlist
cuisineYesPrimary cuisine category (e.g. 'Japanese', 'Nordic', 'Italian').
vibe_tagsNoAtmosphere tags (e.g. ['omakase', 'intimate', 'speakeasy']).
price_tierNoPrice bracket ('$', '$$', '$$$', '$$$$').
user_ratingNoRating from 1.0 to 10.0 (if visited).
date_visitedNoDate of dining experience (YYYY-MM-DD).
neighborhoodNoSpecific district or quarter (e.g. 'Ginza', 'Mayfair').
restaurant_idNoOptional custom ID.
michelin_starsNo1, 2, or 3 Michelin stars (optional).
standout_dishesNoMust-order menu items or tasting course highlights.
notes_and_reviewNoDining notes, reservation tips, or food review.
url_or_reservationNoWebsite or reservation link (Resy/OpenTable).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it says nothing beyond the purpose sentence. It does not disclose that this is a write/create operation, whether it is idempotent, how an existing entry is handled if 'name'/'restaurant_id' collides, or what happens when only the three required fields are supplied.

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?

A single, front-loaded sentence with no filler or redundancy. It is efficient, though arguably too terse for a 14-parameter mutation tool, which is a completeness problem rather than a conciseness one.

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

Completeness2/5

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

For a 14-parameter write tool with zero annotations, no usage routing, and no stated side effects, one sentence is thin. The presence of an output schema removes the need to describe return values, but the description still leaves the agent without enough to know when and how safely to call it.

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 each of the 14 parameters is already documented with examples and defaults; the baseline is 3. The description's 'dining journal or wishlist' phrasing loosely signals the visited/wishlist distinction but adds no format, default, or constraint detail beyond the schema.

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

Purpose4/5

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

The description gives a specific verb ('Log') and resource ('restaurant or dining experience') and even names the two destination buckets (dining journal vs. wishlist), which maps onto the status parameter. It is clear enough to distinguish from read-side siblings like search_restaurants, though it never names them explicitly.

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

Usage Guidelines2/5

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

There is no guidance on when to choose this tool over search_restaurants, get_agent_recommendation_brief, or vet_recommendation_candidate, and no mention of prerequisites such as needing an existing recommendation. The journal-vs-wishlist phrasing implies usage but states no conditions or exclusions.

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