Skip to main content
Glama

Get Cigar Line Details

get_cigar_line
Read-only

Full details for one cigar line, by line_id (from search_cigars) or name.

Returns taste profile (strength/wrapper/binder/filler/origin), community rating breakdown incl. draw/burn/aroma/taste sub-ratings, price range, and description from the Cigar Scanner knowledge base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
line_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4/5.0
Behavior3/5

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

The readOnlyHint annotation already communicates that this is a safe read, and the description adds useful detail about the return payload, including taste profile, rating breakdown, price range, and knowledge-base description. It does not disclose edge-case behavior such as what happens if neither parameter is provided or if a name matches multiple lines.

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 compact sentences: the first defines the tool's scope and parameters, and the second summarizes what is returned. Every sentence adds value and there is no redundant restatement of the schema.

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 read-only lookup, the description, output schema, and readOnlyHint cover the common usage well. The main gap is that the schema marks zero required parameters, so an agent could call the tool without either line_id or name unless it infers the one-identifier precondition from the description.

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?

With 0% schema description coverage, the description must compensate, and it does add key semantics: line_id should come from search_cigars and name is an alternative identifier. It does not specify whether exactly one is required, which parameter wins if both are given, or how name matching behaves, so the compensation is partial.

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 'Full details for one cigar line' and lists the lookup keys (line_id or name), so the verb, resource, and scope are immediately clear. It distinguishes itself from search_cigars by promising a single item's full details rather than a search result list.

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?

It says the tool takes a line_id from search_cigars or a name, which implies a look-up-after-search workflow. It does not explicitly rule out siblings like similar_cigars or search_products, but the single-item-details framing gives enough contextual 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

A4.2/5.0
Disambiguation4/5

The two search tools are clearly separated by description—search_cigars finds cigar lines while search_products finds buyable SKUs—so the main overlap is manageable. get_cigar_line and similar_cigars are also distinct (details vs recommendations). The slight ambiguity between the two search tools prevents a perfect score.

Naming Consistency4/5

Most names follow a clean verb_noun snake_case pattern: check_shipping, get_cigar_line, search_cigars, search_products. similar_cigars breaks the pattern by omitting a verb, making it slightly less consistent than the rest.

Tool Count5/5

Five tools is well-scoped for this domain: shipping lookup, line search, line details, product search, and similar-cigar discovery. Each tool serves a clear purpose without redundancy or bloat.

Completeness4/5

Core workflows are covered: discover lines, inspect details, find similar options, locate buyable products, and verify shipping legality. A minor gap is the lack of a direct product-detail-by-SKU endpoint or brand-based filtering, but agents can work around these without major failure.

Resources