Skip to main content
Glama

flowers

Server Details

Find flower arrangements, check US florist delivery by ZIP and date, get a purchase link + pricing

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP ยท MCP 2025-06-18
URL

TDQS

A4.3/5.0

Scored across 3 tools

Disambiguation4/5

Search, delivery checking, and checkout link generation are clearly distinct stages of the shopping flow. There is minor overlap because get_checkout_link can also confirm delivery availability, which could make an agent wonder whether to call it or check_delivery, but the descriptions are strong enough to disambiguate the intended use.

Naming Consistency5/5

All three tool names follow a consistent snake_case verb_noun pattern: check_delivery, get_checkout_link, search_arrangements. The verbs are specific to each action and the pattern is predictable.

Tool Count5/5

Three tools is a well-scoped set for a flower ordering server: search the catalog, check delivery feasibility, and obtain a checkout link. Each tool covers a necessary step in the purchasing flow without redundant or unnecessary entries.

Completeness4/5

The toolset covers the core shopping lifecycle: finding arrangements, confirming delivery, and generating a purchase link. The main gap is the lack of direct order management or arrangement detail operations, but those appear intentionally handled through the external checkout link rather than the MCP server.

Available Tools

3 tools
check_deliveryCheck delivery availabilityA
Read-onlyIdempotent
Inspect

Check whether florist delivery is available to a US ZIP code on a given date. Availability is per ZIP and date, not per arrangement. Same-day delivery requires ordering before 2:00 PM in the recipient's local time zone.

ParametersJSON Schema
NameRequiredDescriptionDefault
zipYesRecipient 5-digit US ZIP code.
dateYesRequested delivery date, YYYY-MM-DD, in the recipient's local date.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark the tool read-only and idempotent. The description adds useful behavioral context: availability depends on ZIP and date, and same-day delivery has a cutoff in the recipient's time zone. No contradictions with 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?

Three concise sentences, front-loaded with the core purpose, followed by a scope clarification and a practical rule. No redundant or filler content.

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

Completeness3/5

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

The tool is simple with two fully documented parameters, but there is no output schema and the description does not state the return format (e.g., boolean or availability details). For a read-only check, this leaves some ambiguity about the response shape.

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?

The input schema already fully documents both parameters (zip pattern and date format with local-date semantics). The description adds the same-day cutoff constraint tied to the date and clarifies that availability is not per arrangement, giving extra meaning 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?

The description explicitly states the tool's function: checking florist delivery availability for a given US ZIP and date. It further distinguishes itself from arrangement-related tasks by noting availability is per ZIP/date, not per arrangement, clearly differentiating from sibling tools like search_arrangements.

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?

The description states the tool is for checking availability per ZIP and date, explicitly excluding arrangement-specific availability, which signals when not to use it. It also provides the same-day cutoff rule (before 2 PM recipient local time). However, it doesn't name the sibling tool for arrangement-specific checks, so the guidance is implicit rather than explicit.

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

search_arrangementsSearch flower arrangementsA
Read-onlyIdempotent
Inspect

Find flower arrangements in The Flowers Directory catalog by occasion, color, flower type, budget and free text. Every result includes the product code needed by check_delivery and get_checkout_link, the arrangement price, and total_before_tax (price plus the flat $19.99 delivery fee). Returns up to 20 matches, best match first.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNoFree-text keywords matched against the title and description, e.g. "blue hydrangea in a vase".
budgetNoMaximum all-in amount in USD before tax (arrangement price + $19.99 delivery). Use this for "around $110"-style requests.
colorsNoColors that should appear in the arrangement (any match). Known values: red, pink, white, yellow, purple, lavender, orange, blue, green, cream, peach, coral, burgundy, gold, mixed.
occasionNoOne of: sympathy, birthday, romance, anniversary, get_well, new_baby, thank_you, mothers_day, congratulations, wedding, just_because. "funeral" is accepted as sympathy.
min_priceNoMinimum arrangement price in USD.
flower_typesNoFlower types that should appear (any match). Known values: roses, lilies, tulips, sunflowers, orchids, carnations, daisies, hydrangeas, alstroemeria, chrysanthemums, gerberas, lisianthus, snapdragons, dahlias, peonies, irises, delphinium, larkspur, gladiolus, calla lilies, freesia, ranunculus, asters, proteas, anthuriums, succulents, plants, mixed.

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds valuable behavioral detail beyond annotations: returns up to 20 matches, orders by best match first, and discloses exactly what each result contains, including the total_before_tax calculation (price plus $19.99 delivery fee). This is substantial beyond the structured fields.

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?

Three tight sentences: the first states the purpose and filters, the second covers result composition and pricing semantics, and the third states the result cap and ordering. There is no redundant or filler content; every sentence earns its place.

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?

With no output schema, the description compensates by defining the key return fields, the pricing semantics, the 20-result limit, and match ordering. All 7 optional parameters are already documented in the schema, and annotations cover safety and idempotence. Nothing critical is missing for a read-only search tool.

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 high (86%), and the schema already documents each parameter with known values and formats. The description mostly restates the filter dimensions at a high level and adds the pricing formula that clarifies the 'budget' parameter semantics. Since the schema carries the parameter documentation burden, a baseline 3 is appropriate.

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 ('Find flower arrangements in The Flowers Directory catalog') and enumerates the main filter dimensions. It also distinguishes itself from sibling tools by noting that results include the product code needed by check_delivery and get_checkout_link, making its role as the catalog search step clear.

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?

The description provides clear context for when the tool should be used: whenever an agent needs to find or search catalog arrangements. It implicitly routes the agent to sibling tools afterward by stating the result contains the product code they need. It does not explicitly state when not to use it or name alternatives, but the context is sufficient for a search-vs-delivery/checkout distinction.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedcheck_delivery
    • First observedget_checkout_link
    • First observedsearch_arrangements

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources