Skip to main content
Glama

find_similar

Read-onlyIdempotent

Coffees with a similar profile to a given one, ranked by shared flavor notes and roast/body/acidity/sweetness proximity. Deterministic scoring over Percolate's structured tasting data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 5)
coffeeYesCoffee id or name

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already establish read-only and idempotent behavior; the description adds valuable context by noting deterministic scoring over Percolate's structured tasting data. This tells the agent that results are reproducible and grounded in structured attributes rather than subjective or opaque ranking. It does not cover edge cases like no matches or invalid coffee references, but for a simple read-only tool this is acceptable.

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 two tight sentences with no wasted words. The first sentence front-loads the purpose and ranking criteria, while the second adds a meaningful note about determinism and the data source. Every element earns its place.

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 low-complexity read-only tool, the description, schema, and annotations together cover input format, ranking behavior, result count limits, and safety profile. The only minor gap is information about behavior when no similar coffees are found, but that is not critical for a listing tool. Overall this is complete enough for an agent to invoke correctly.

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?

Both parameters are fully documented in the schema: 'coffee' accepts an id or name, and 'limit' specifies max results with a default of 5. The description does not add further parameter-level meaning beyond restating the ranking logic, so it appropriately relies on the schema's 100% coverage. No gaps require compensation.

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's function: return coffees similar to a given one, ranked by shared flavor notes and roast/body/acidity/sweetness proximity. This specifies a concrete verb, resource, and output ordering, which is more specific than a vague 'find similar'. However, it does not explicitly contrast with sibling tools like get_recommendations or search_coffees, so some differentiation is left to inference.

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 intended use case is implied: provide a reference coffee and obtain ranked similar coffees based on tasting data. But there is no explicit guidance on when to choose this tool over alternatives, such as search_coffees for text queries or get_recommendations for curated suggestions. The description implies usage but does not state exclusions or alternatives.

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.