Skip to main content
Glama

what_to_brew

Read-onlyIdempotent

A coffee suggestion for right now, based on time of day (evening picks lean decaf), mood, and the brew method you're using — scored over Percolate's tasting profiles.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
moodNoe.g. 'need focus', 'lazy weekend', 'something comforting', 'adventurous'
brew_methodNoWhat you're brewing with
time_of_dayNoWhen the coffee will be drunk — shifts the pick toward lighter or lower-caffeine options later in the day

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so no safety disclosure is needed. The description adds genuine behavioral context beyond that: evening picks 'lean decaf' and the result is 'scored over Percolate's tasting profiles.' There is no contradiction with the annotations.

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, well-paced sentence with no filler. It front-loads the core promise ('A coffee suggestion for right now') and every phrase contributes meaning.

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 simple read-only recommender with no required parameters and no output schema, the description covers the returned artifact ('a coffee suggestion'), the relevant inputs, and the scoring basis. It is slightly light on return-shape detail and does not mention edge cases like omitted inputs, but nothing critical is missing.

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 three parameters fully. The description names the same three factors and adds only the evening-decaf behavior, which largely duplicates the time_of_day schema text; it provides no new parameter-specific semantics.

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 clearly states the tool returns 'a coffee suggestion for right now' and lists the deciding factors: time of day, mood, and brew method. It is specific enough to distinguish it from catalog-lookup siblings like search_coffees or get_coffee, but it does not explicitly name or contrast any sibling.

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?

'For right now' gives a clear temporal context for when the tool is appropriate, and the mention of time, mood, and brew method describes the intended scenario. However, it never says when not to use it or points to alternatives such as get_recommendations or dial_in_suggestion, so it stops short of full routing 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.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a clearly distinct job: searching, fetching details, comparing, finding similar coffees, personalized recommendations, trending picks, immediate what-to-brew suggestions, and brew dial-in guidance. No two tools appear to perform the same core action.

Naming Consistency4/5

Most tools follow a readable snake_case verb_noun pattern (compare_coffees, get_coffee, search_coffees), and the exceptions (trending_coffees, what_to_brew, find_similar) are still intuitive and consistent in style. The deviations are minor rather than chaotic.

Tool Count5/5

8 tools is a well-scoped size for a specialty-coffee discovery and recommendation server. Each tool covers a different user-facing step without bloating the surface or leaving the domain feelig thin.

Completeness4/5

The tool surface covers the main coffee journey: search, inspect, compare, find similar, get personalized/or-trending/now suggestions, and brewing guidance. Minor gaps exist around enumerating available option values or filtering directly by flavor tags, but agents can work around these using search and the structured data returned.