Blumen Komander München
Server Details
First German florist with a public MCP server. Search bouquets and order flowers via AI in Munich.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Severin2k/blumen-komander-mcp
- GitHub Stars
- 0
- Server Listing
- blumen-komander-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.1/5 across 6 of 6 tools scored.
Each tool has a clear, distinct purpose: checking delivery availability, creating a cart, getting a checkout link, tracking an order, obtaining shop info, and searching for bouquets. No two tools overlap in functionality, making it easy for an agent to select the correct one.
All tool names follow a consistent verb_noun pattern in snake_case: check_availability, create_cart, get_checkout_link, get_order_status, get_shop_info, search_flowers. The naming is uniform and predictable.
With 6 tools, the set is well-scoped for a flower ordering service. Each tool covers an essential step in the customer journey without unnecessary redundancy, and the count is within the ideal range for an MCP server.
The tool set covers the full ordering lifecycle: searching for flowers, checking delivery availability, creating a cart with all necessary details, obtaining a checkout link for payment, and tracking order status. There are no obvious gaps or dead ends in the flow.
Available Tools
6 toolscheck_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.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Lieferdatum im Format YYYY-MM-DD | |
| postalCode | No | Ziel-Postleitzahl in München (z.B. 80799) |
Tool Definition Quality
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 adds useful behavioral context: delivery is always free and a same-day cutoff is returned. However, it does not disclose whether the operation is read-only, what happens when delivery is unavailable, or any error conditions, leaving some transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact (three short sentences) and each sentence adds value: the core purpose, the free-delivery fact, and the return value. There is no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description does mention the returned same-day cutoff, which helps. However, it does not fully describe the response shape or how availability is indicated (e.g., boolean, message). Given the simplicity of the tool, this is a minor gap and the description is otherwise complete enough for a basic check.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for the two parameters (date and postalCode). The description restates these concepts but adds no new parameter-level meaning beyond what the schema already provides, 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'prüft' (checks) with a clear resource (delivery capability of Blumen Komander München) and scoping parameters (date and postal code). It also mentions the return of a same-day cutoff, making it distinctly different from sibling tools like create_cart or get_order_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes it clear this is a pre-order availability check, but it does not explicitly name when not to use it or mention alternative tools. No exclusions are stated, and the context is clear enough for basic guidance.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Stadt (Standard: München) | |
| Yes | E-Mail des Bestellers | ||
| phone | No | Telefonnummer Empfänger | |
| quantity | No | Anzahl (Standard: 1) | |
| address_1 | Yes | Straße und Hausnummer | |
| last_name | Yes | Nachname Empfänger | |
| first_name | Yes | Vorname Empfänger | |
| variant_id | Yes | ID der gewählten Produktvariante | |
| postal_code | Yes | PLZ | |
| billing_city | No | Stadt Rechnungsadresse | |
| delivery_date | Yes | Lieferdatum YYYY-MM-DD | |
| greeting_card | No | Text für die Grußkarte | |
| payment_provider | No | Zahlungsmethode: stripe (Kreditkarte, Apple Pay, Google Pay), paypal oder sepa (SEPA-Lastschrift). Standard: stripe. | |
| billing_address_1 | No | Straße Rechnungsadresse | |
| billing_last_name | No | Nachname Rechnungsadresse | |
| billing_first_name | No | Vorname Rechnungsadresse | |
| billing_postal_code | No | PLZ Rechnungsadresse |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the conditional billing logic (if billing address differs, set billing_* fields; if not, use delivery address) and enumerates payment options with their corresponding provider values. It also discloses the order of actions (ask questions, then create cart). It does not mention side effects or error behavior, but the core behaviors are well covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately sized but well-structured. Each sentence adds value: purpose, fields set, billing logic, and prerequisite questions. The use of numbered questions improves readability. While slightly lengthy, it avoids redundancy and includes only relevant operational details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex tool with 17 parameters, no output schema, and no annotations, the description provides comprehensive contextual guidance: it explains the core action, conditional billing behavior, and the necessary customer questions. The only gap is the lack of information about the return value or next steps after cart creation, but this is a minor omission given the absence of an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the input schema already describes all 17 parameters with 100% coverage, the description adds meaningful context beyond the schema. It explains the conditional relationship between billing and shipping addresses, and it maps payment provider enum values to user-facing options (Kreditkarte/Apple Pay/Google Pay to stripe, etc.). This semantic enrichment helps the agent correctly populate parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Legt einen Warenkorb bei Blumen Komander an und fügt einen Blumenstrauß hinzu' (creates a cart and adds a bouquet). The verb 'Legt an' is specific and resource-oriented, and it lists the fields set. It is distinct from sibling tools like check_availability, get_checkout_link, and search_flowers, which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context by instructing the AI to ask two prerequisite questions before creating the cart (billing address match, payment method preference). It does not explicitly mention when not to use this tool or alternatives, but the sibling tool list makes it clear this is the only cart-creation tool. The prerequisite questions serve as clear when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_checkout_linkAInspect
Gibt den direkten Checkout-Link für einen bestehenden Warenkorb zurück. Der Kunde klickt auf den Link und zahlt.
| Name | Required | Description | Default |
|---|---|---|---|
| cart_id | Yes | ID des Warenkorbs |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explains the main outcome (the customer clicks the link and pays) but does not mention potential side effects, error cases (e.g., invalid cart ID), link expiration, or authentication requirements. This is adequate but leaves some behavioral unknowns.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short, clear sentences that immediately state the function and the user-facing outcome. No wasted words and well front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema), the description covers the essential purpose and context. It could be more explicit about the return format (e.g., JSON containing the URL), but the phrase 'returns the direct checkout link' sufficiently implies the output for most use cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully describes the single parameter 'cart_id' with 100% coverage. The description adds only that the cart must be existing, which is arguably already implied by the schema description and tool purpose. Thus, minimal added value beyond the structured schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns a direct checkout link for an existing shopping cart, using a specific verb ('returns') and resource ('checkout link for an existing cart'). It distinguishes itself from sibling tools by focusing on the payment link rather than order status or availability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: the tool is for existing carts, implying the user must have a cart ID ready. It does not explicitly mention alternative tools or when not to use it, but the purpose is sufficiently distinct that the intended usage is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_order_statusAInspect
Fragt den Status einer bestehenden Bestellung bei Blumen Komander ab - eingegangen, in Vorbereitung, unterwegs oder geliefert, inkl. Lieferdatum. Zur Verifikation werden Bestellnummer (aus der Bestellbestätigung) und die E-Mail-Adresse des Bestellers benötigt. Gibt keine Adressdaten zurück.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | E-Mail-Adresse des Bestellers (zur Verifikation) | ||
| order_number | Yes | Bestellnummer (z.B. 114, steht in der Bestellbestätigung) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that verification via order number and email is required and explicitly states that no address data is returned, which is a helpful privacy-related transparency. It does not mention side effects or error behavior, but for a simple status lookup it provides useful behavioral context beyond the basic function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, and every clause adds value (status range, delivery date, verification requirements, explicit exclusion of address data). No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool with full schema coverage and no output schema, the description is complete. It explains what the tool returns (status and delivery date) and what it does not return (address data), and the verification requirements make the usage context self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides complete descriptions for both parameters (email and order_number), covering 100% of parameters. The description repeats essentially the same information ('Bestellnummer aus der Bestellbestätigung' and 'E-Mail-Adresse des Bestellers'), adding no new semantic meaning beyond what the schema already conveys.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool queries the status of an existing order at Blumen Komander, enumerating the possible statuses (received, in preparation, on the way, delivered) and including the delivery date. It uses a specific verb ('Fragt ab') and resource ('Status einer bestehenden Bestellung'), and it is clearly distinct from sibling tools like check_availability or get_shop_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (when checking order status) and even states the required verification data. It does not explicitly name alternatives or exclusions, but the purpose is so distinct from siblings that the context is clear enough.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure. It states the tool returns information, which is a read-only operation, and lists the specific categories returned. It does not mention side effects or errors, but none are expected for such a simple info tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that directly lists the returned information categories with no wasted words. It is concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (no parameters, no output schema, no annotations), the description is complete. It enumerates the return content sufficiently for an agent to understand what the tool provides.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the description does not need to explain parameter semantics. The baseline for zero parameters is 4, and the description appropriately adds meaning by detailing what information is returned.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool returns general information about Blumen Komander, listing categories (opening hours, delivery area, contact, payment methods). This clearly distinguishes it from sibling tools like search_flowers or check_availability, which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It does not explicitly state when to use this tool versus alternatives, but the nature of the description (general shop info) implies usage. No exclusions or alternative recommendations are provided, so it is not explicit guidance.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Gewünschte Farbe | |
| style | No | Stil des Straußes | |
| maxPrice | No | Höchstpreis in EUR | |
| minPrice | No | Mindestpreis in EUR | |
| occasion | No | Anlass für die Blumen | |
| flower_type | No | Blumenart |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It adds that the tool searches 'verfügbare' (available) bouquets and filters by occasion, color, style, and budget, which are behavioral traits. However, it does not state whether it is read-only, any rate limits, or what the result contains, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence in German: one clause for the search action and one for the filtering capabilities. It is front-loaded with the core purpose and contains no unnecessary words or repetition. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, so the description should explain what the tool returns (e.g., list of bouquets, matching criteria, pricing) but it does not. It also does not mention pagination, sorting, or how results relate to other tools like check_availability or create_cart. For a tool with 6 optional parameters and no return specification, the description feels incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, so the baseline is 3. The description groups parameters into categories ('Anlass, Farbe, Stil, Budget') and adds 'Budget' as a conceptual umbrella for minPrice/maxPrice, but it omits 'flower_type' which exists in the schema. Overall, it adds minor semantic grouping but does not significantly extend the schema's existing parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Sucht verfügbare Blumensträuße bei Blumen Komander München' (searches for available flower bouquets at Blumen Komander Munich). It uses a specific verb ('Sucht') and resource ('verfügbare Blumensträuße'), and the filtering attributes distinguish it from sibling tools like check_availability, create_cart, or get_shop_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: it is the tool for searching/filtering bouquets, but it does not explicitly say when to use it over siblings or when not to. No alternatives or exclusions are mentioned. The purpose alone gives some guidance, but not explicit criteria for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceMCP server for the Roastify Developer API, letting AI agents browse the coffee catalog and generate packaging artwork, with paid tools settled in Bitcoin Lightning.Apache 2.0
- AlicenseAqualityAmaintenancePlanthire AI - MCP server providing AI-powered tools and automation by MEOK AI Labs710MIT
- AlicenseBqualityCmaintenanceA Minecraft MCP Server powered by Mineflayer API. It allows to control a Minecraft character in real-time, allowing AI assistants to build structures, explore the world, and interact with the game environment through natural language instruction2242692Apache 2.0
- Alicense-qualityAmaintenanceCreativity Engine - MCP server providing AI-powered tools and automation by MEOK AI Labs8MIT
Your Connectors
Sign in to create a connector for this server.