Skip to main content
Glama

Server Details

Find wines and compare live merchant prices in your region. Fair-deal search, My Wine OAuth login.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
get_user_regionAInspect

Fetch the user's marketplace region from their profile.

Call this before questioning. The marketplace region is the user's OWN country (where they buy) — taken from the server and NOT user-controllable. It determines the currency and scopes every offer search.

Returns the region name, currency, and the price-tier thresholds (t1/t2/max) to use for cheap/mid/premium in search_offers.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that the region is server-provided and NOT user-controllable, which is a meaningful trust/scoping constraint, and implies a read-only fetch. It does not cover error or authentication behavior, but for a zero-parameter read call that is a minor gap.

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 five short sentences, each earning its place: the fetch action, the when-to-call directive, the source/control constraint, the downstream effect, and the return value semantics. It is front-loaded with the essential directive and contains no filler.

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?

For a parameterless tool with an output schema, the description is complete. It explains what is returned (region name, currency, price-tier thresholds), why it matters, and how the output should be used with search_offers. Nothing needed to invoke or apply this tool correctly is missing.

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

Parameters5/5

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

The tool has no parameters, so there is no schema detail to compensate for. The description adds context by explaining the data source ('from their profile', 'taken from the server'), which reinforces why no user input is needed and clarifies the source of truth.

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 uses a specific verb and resource ('Fetch the user's marketplace region from their profile') and clearly states the tool's role in the workflow. It differentiates itself from the sibling search tools by establishing itself as a prerequisite that scopes offer searches.

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?

It gives explicit sequencing guidance: 'Call this before questioning' and explains that the result 'determines the currency and scopes every offer search.' This tells the agent exactly when to invoke it relative to search_offers, and no competing sibling serves this purpose.

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

search_offersAInspect

Search live purchase offers for wine, scoped to the user's marketplace region.

This is the end of the sommelier flow — call it once you have collected the user's preferences (see the /sommelier prompt). It always returns retail OFFERS (never abstract products): every result is a real listing from a shop with a price and a purchase link.

IMPORTANT:

  • query MUST be English space-separated keywords, NO commas/prepositions. Use "" if the user specified no wine characteristics. Apply semantic translation (e.g. "шампанское" → "Champagne"; "steak" → "red tannic bold Cabernet Sauvignon"). NEVER include a city, price, currency, shop name, or the word "wine".

  • price_min and price_max are REQUIRED. If the user named a number with price intent, use it exactly. Otherwise map cheap/mid/premium to the t1/t2/max thresholds from get_user_region. For a range ("от 20 до 50") set BOTH bounds — never drop the lower one.

  • vintage: set to the exact year AND also include that year in query whenever the user names a specific year. Omit if no year was mentioned.

  • shop_names: only when the user named a retailer — pass the exact "Name (ID)" strings returned by search_shops (call search_shops FIRST).

  • Show the result to the user EXACTLY as returned — do not summarize or reformat.

Args: query: English space-separated wine keywords (may be ""). price_min: Minimum price (usually 0.01 unless a lower bound was given). price_max: Maximum price. price_currency: ISO code if the user named a currency (e.g. "EUR"); else "". shop_names: Up to 5 "Name (ID)" strings from search_shops, or omit. vintage: Specific vintage year, or omit if none.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
vintageNo
price_maxYes
price_minYes
shop_namesNo
price_currencyNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A5/5.0
Behavior5/5

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

With no annotations, the description carries full behavioral burden and does so thoroughly: it discloses that results are real retail listings with price and purchase link, that they must be shown exactly as returned, and it imposes query-construction rules (English keywords, no forbidden tokens, price ranges must keep both bounds). No behavioral surprises are left unstated.

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 definition is long but every sentence is actionable, and it is well-structured: a one-line purpose, a short context paragraph, a bulleted IMPORTANT block, then an Args list. Front-loading the scope and flow makes it easy to scan.

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 a tool with six parameters, zero input-schema descriptions, no annotations, and an output schema that can define return shape, this description is complete: it covers when to call, parameter semantics, sibling dependencies, and exact output-touching behavior. Nothing needed for correct invocation appears to be missing.

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

Parameters5/5

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

Schema description coverage is 0%, but the Args section fully compensates by explaining every parameter: query must be English keywords, price_min defaults to 0.01, price_currency takes ISO codes, shop_names are exact 'Name (ID)' strings capped at 5, and vintage is an exact year. The description also clarifies required-versus-omitted behavior beyond the schema.

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?

Opens with a specific verb+resource statement: 'Search live purchase offers for wine, scoped to the user's marketplace region.' It further differentiates from siblings by stating it is the end of the sommelier flow and always returns retail OFFERS, never abstract products, which distinguishes it from get_user_region and search_shops.

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?

Explicitly says to call it once preferences are collected, names the sibling flow, and gives sequencing: 'call search_shops FIRST' when shop_names are needed, and maps price tiers to 'thresholds from get_user_region.' This tells an agent when to use the tool and how it relates to the alternatives.

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

search_shopsAInspect

Search for wine RETAILERS / STORES by name (e.g. Waitrose, Majestic, Tesco, Systembolaget, Wine.com), scoped to the user's marketplace region.

Call this ONLY when the user explicitly names a retail store. Do NOT call it for wine producers, châteaux, domaines, wineries or brands — those go in the "query" of search_offers.

Returns up to 20 matching shops that actually have offers in the user's region, each as "Name (ID)". Pass the exact "Name (ID)" strings of the up-to-5 best matches into search_offers's shop_names.

Args: query: Shop name or partial name the user mentioned.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.9/5.0
Behavior5/5

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

Annotations are absent, so the description carries the full behavioral burden. It discloses scoping to the user's marketplace region, a limit of up to 20 results, the output format ('Name (ID)'), and the instruction to pass exact strings into search_offers. This exceeds what most descriptions provide and leaves no ambiguity about behavior.

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 efficient and front-loaded. It opens with the purpose, immediately gives usage constraints, then explains the output and how to consume it. Every sentence serves a distinct informational need; no filler or repetition.

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?

For a single-parameter search tool with an output schema, the description covers everything needed: correct call conditions, the parameter meaning, result count and format, and downstream usage in search_offers. The presence of an output schema handles return structure, so the description's additional context completes the picture.

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

Parameters4/5

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

Schema coverage is 0%, so the description must document the parameter. It explains 'query' as 'Shop name or partial name the user mentioned,' which adds semantic meaning beyond the schema's type/title. It could be slightly richer (e.g., note case sensitivity or fuzzy matching), but the explanation is sufficient for correct invocation.

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 ('Search') and resource ('wine RETAILERS / STORES by name'), with concrete examples. It explicitly differentiates from siblings by saying producers/châteaux/domaines/wineries/brands go to search_offers, so an agent cannot confuse which tool handles store names.

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?

Provides explicit call conditions: 'Call this ONLY when the user explicitly names a retail store.' It also states when NOT to call it and routes the alternative case to search_offers. This is a model of clear when/when-not guidance with a named alternative.

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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables users to compare and get recommendations across multiple supermarket products, combining curated specifications with realtime price and review lookups.
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and comparing products from Woolworths and Coles supermarkets.
    MIT
  • F
    license
    Not graded
    quality
    F
    maintenance
    Semantic product search and price-intelligence API over Singapore e-commerce data. Computes auditable value-scores from Shannon entropy across vendor price distributions, with pay-per-call pricing via x402 (USDC) alongside Stripe.
  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables product search, price comparison, and price history analysis across 6 European marketplaces (DE, AT, GB, FR, IT, ES).
    15
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.9/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_user_region supplies marketplace configuration, search_shops finds retailers by name, and search_offers returns actual product listings. The descriptions also explicitly define when each tool should and should not be used, leaving no ambiguity.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: get_user_region, search_offers, search_shops. The verbs are simple and accurately reflect the action, making the set predictable and easy to navigate.

Tool Count5/5

Three tools is a well-scoped size for a focused wine-search assistant: one to fetch required user context, one optional helper for shop filtering, and one terminal search action. Each tool exists to support a distinct step in the flow with no redundant additions.

Completeness5/5

The tool surface fully covers the described sommelier flow: obtain region constraints, optionally resolve named shops, then search offers. There are no dead ends—search_offers terminates with purchasable results, and the supporting tools address all necessary preconditions.

Resources