Skip to main content
Glama

Blumen Komander München

Server Details

Blumen Komander München - Erster Florist mit MCP. Suchen, prüfen, bestellen. Lieferung München.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Severin2k/blumen-komander-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: checking availability, creating a cart, getting a checkout link, retrieving shop info, and searching flowers. There is no functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., check_availability, create_cart), making them predictable and easy to differentiate.

Tool Count5/5

With 5 tools, the server is well-scoped for a flower ordering service, covering the essential user flow without unnecessary extras.

Completeness4/5

The tool set covers the core ordering flow (search, availability, cart creation, checkout) and shop info. Missing a tool for modifying cart items or viewing order history, but these are minor gaps.

Available Tools

5 tools
check_availabilityAInspect

Prüft ob Blumen Komander München an einem bestimmten Datum in eine bestimmte PLZ liefern kann. Lieferung ist bei Blumen Komander immer kostenlos - keine Liefergebühr. Gibt Same-Day Cutoff zurück.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesLieferdatum im Format YYYY-MM-DD
postalCodeNoZiel-Postleitzahl in München (z.B. 80799)
Behavior4/5

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

Without annotations, the description adds valuable behavioral context: delivery is always free, and the tool returns a same-day cutoff. This goes beyond what the input schema provides. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at two sentences, covering purpose, key behavior, and return value. It is front-loaded and every sentence adds value, though it could be slightly more structured.

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?

Given no output schema, the description mentions the same-day cutoff return value, providing important context. It is complete enough for a simple availability check tool with two parameters.

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 both parameters are already documented in the schema. The description adds no specific parameter-level details beyond the schema, so a baseline score of 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 clearly states the verb 'Prüft' (checks) and the specific resource: delivery availability for Blumen Komander München. It is distinct from sibling tools like create_cart or search_flowers, which serve different purposes.

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 implies when to use the tool: to check if Blumen Komander can deliver on a specific date to a given postal code. It does not explicitly exclude alternatives but is sufficiently clear for an agent to decide.

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

create_cartAInspect

Legt einen Warenkorb bei Blumen Komander an und fügt einen Blumenstrauß hinzu. Setzt Lieferdatum, Lieferadresse, Zahlungsmethode und optional eine Grußkarte. Fragt den Kunden ob die Rechnungsadresse von der Lieferadresse abweicht. Falls ja, werden billing_first_name, billing_last_name, billing_address_1, billing_postal_code und billing_city gesetzt. Falls nein, wird die Lieferadresse als Rechnungsadresse verwendet. Bevor der Warenkorb angelegt wird sollte die KI den Kunden fragen: 1. Weicht die Rechnungsadresse von der Lieferadresse ab? 2. Welche Zahlungsmethode bevorzugst du? - Kreditkarte / Apple Pay / Google Pay (stripe) - PayPal (paypal) - SEPA-Lastschrift (sepa)

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoStadt (Standard: München)
emailYesE-Mail des Bestellers
phoneNoTelefonnummer Empfänger
quantityNoAnzahl (Standard: 1)
address_1YesStraße und Hausnummer
last_nameYesNachname Empfänger
first_nameYesVorname Empfänger
variant_idYesID der gewählten Produktvariante
postal_codeYesPLZ
billing_cityNoStadt Rechnungsadresse
delivery_dateYesLieferdatum YYYY-MM-DD
greeting_cardNoText für die Grußkarte
payment_providerNoZahlungsmethode: stripe (Kreditkarte, Apple Pay, Google Pay), paypal oder sepa (SEPA-Lastschrift). Standard: stripe.
billing_address_1NoStraße Rechnungsadresse
billing_last_nameNoNachname Rechnungsadresse
billing_first_nameNoVorname Rechnungsadresse
billing_postal_codeNoPLZ Rechnungsadresse
Behavior4/5

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

No annotations were provided, so the description carries full burden. It discloses the conditional logic for billing address, payment method options, and default values (e.g., city defaults to Munich). It does not detail side effects like cart persistence or idempotency, but the behavioral flow is adequately described.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the primary purpose but contains multiple sentences that repeat some schema details (e.g., payment method options). It is not overly long but could be more concise without losing essential information.

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?

Given 17 parameters with 7 required and no output schema, the description effectively covers the conditional logic and pre-requisites (customer questions). It misses what the response looks like, but the behavioral steps are well explained.

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 100%, so baseline is 3. The description adds value by explaining the conditional billing address logic and payment method enum meanings beyond the schema descriptions. It also clarifies the default city, enhancing parameter understanding.

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 clearly states the tool creates a shopping cart and adds a bouquet, setting delivery details and payment method. It distinguishes from siblings like check_availability or search_flowers which serve different purposes.

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 explicitly instructs the AI to ask the customer two questions before creating the cart (billing address and payment method), providing clear context on when to invoke the tool. However, it does not explicitly state when not to use it.

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

get_shop_infoAInspect

Gibt allgemeine Informationen über Blumen Komander zurück - Öffnungszeiten, Liefergebiet, Kontakt, verfügbare Zahlungsmethoden.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations are provided, so the description carries the full burden. It states the tool returns information but does not disclose any behavioral traits like caching, data freshness, or error handling.

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?

Single sentence, no redundancy, all information is essential. Perfectly concise.

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?

Given no output schema, the description lists the categories of returned information. Lacks details on format or structure, but adequate for a simple info tool.

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?

With no parameters and 100% schema coverage, the description adds value by specifying what information is returned (opening hours, etc.), which the empty schema does not convey.

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 clearly states the tool returns general shop information and lists specific categories (opening hours, delivery area, contact, payment methods). It distinguishes itself from siblings like check_availability or search_flowers.

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?

No explicit guidance on when to use this tool versus alternatives. The purpose is implied but lacks when-not or context for selection.

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

search_flowersAInspect

Sucht verfügbare Blumensträuße bei Blumen Komander München. Filtert nach Anlass, Farbe, Stil und Budget.

ParametersJSON Schema
NameRequiredDescriptionDefault
colorNoGewünschte Farbe
styleNoStil des Straußes
maxPriceNoHöchstpreis in EUR
minPriceNoMindestpreis in EUR
occasionNoAnlass für die Blumen
flower_typeNoBlumenart
Behavior3/5

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

No annotations are provided, so the description must convey behavioral traits. It indicates a search/filter operation (read-only) but does not disclose details like pagination, result format, or authentication needs. It is minimal but adequate for a basic search tool.

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?

Two sentences with no extraneous information. The main action is front-loaded, and every word contributes to understanding.

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 description explains the tool's purpose and parameters but does not describe the expected output (e.g., list of bouquets with prices). Given no output schema and six parameters, a bit more detail would help, but it is sufficient for a search tool with a clear context.

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 coverage is 100%, so the schema already defines all parameters. The description only summarizes a subset of filters (occasion, color, style, budget) and adds the shop name, but does not add meaning beyond the schema. 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 clearly states the tool searches for available bouquets at a specific shop and filters by occasion, color, style, and budget. It distinguishes itself from sibling tools which handle availability, cart, checkout, and shop info.

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 implies when to use this tool (for searching flowers by filters) but does not explicitly state when not to use it or mention alternative tools. However, the context of siblings makes the usage clear.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.