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.
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 3.6/5 across 5 of 5 tools scored. Lowest: 2.9/5.
Each tool has a distinct purpose: checking availability, creating a cart, getting checkout link, shop info, and searching flowers. No overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case (check_availability, create_cart, get_checkout_link, get_shop_info, search_flowers).
Five tools cover the core flower ordering workflow: search, check availability, create cart, checkout, and shop info. The count is well-scoped for this domain.
The tool set covers the essential flow but lacks cart modification (update/delete) and order history. However, agents can work around these gaps by creating a new cart.
Available Tools
5 toolscheck_availabilityAInspect
Prüft ob Blumen Komander München an einem bestimmten Datum in eine bestimmte PLZ liefern kann. Gibt Lieferkosten und 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 description carries full burden. It discloses the tool returns delivery costs and cutoff, but does not mention read-only nature, side effects, or error cases. As a query-like operation, minimal disclosure is acceptable, but more transparency about safety and return behavior would improve the score.
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?
Single sentence with clear, direct statement. No unnecessary words. Front-loaded with the core action.
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 simple 2-parameter tool with no output schema, the description adequately states purpose and return values. Missing details: optionality of postalCode, expected output format, and potential error handling. Still, it provides sufficient context for an AI agent to decide invocation.
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 coverage is 100%, so parameters are already documented. Description adds no extra detail beyond stating 'date' and 'postal code' context. Baseline 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?
Description states 'Checks if Blumen Komander Munich can deliver on a specific date to a specific zip code. Returns delivery costs and same-day cutoff.' It clearly identifies the verb (prüft), resource (Blumen Komander München), and distinct purpose of checking availability, differentiating it from sibling tools like create_cart 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking delivery feasibility but provides no explicit guidance on when not to use or alternative tools. Sibling tools are distinct, but no exclusions or context are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_cartCInspect
Legt einen Warenkorb bei Blumen Komander an und fügt einen Blumenstrauß hinzu. Setzt Lieferdatum, Lieferadresse und optional eine Grußkarte.
| 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 | |
| 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?
No annotations provided, so description carries full burden. It only states the basic action but omits critical traits: it is a write operation, creates a new cart each time, requires authorization, and does not mention whether it's idempotent or what happens on repeat calls.
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?
Two sentences with no redundancy. The main action is front-loaded. 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?
With 16 parameters, no annotations, and no output schema, the description is too brief. It omits what the tool returns (e.g., cart ID), whether it combines cart creation and item addition in one step, and any preconditions or side effects.
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 coverage is 100%, so baseline is 3. The description adds context by grouping delivery-related fields and mentioning the optional greeting card, but does not explain variant_id or billing fields. Passes burden to 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 it creates a shopping cart and adds a bouquet, setting delivery date, address, and optional greeting card. It distinguishes from siblings which are retrieval or checkout tools, but could be more precise about adding a single product.
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?
No guidance on when to use this tool versus alternatives. No mention of when not to use, or any prerequisites like needing a product variant ID already selected.
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, the description bears full burden. It only states the core function but does not disclose behavioral traits such as idempotency, side effects, error handling (e.g., if cart_id is invalid), or authentication requirements.
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 concise sentences, front-loaded with the primary action, and contains no fluff. Every word adds value.
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 simple tool with one parameter and no output schema, the description covers the essential purpose. However, it lacks details about the return value format (e.g., a URL string) and could contextualize integration steps.
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 coverage is 100% (one parameter described). The description adds no additional meaning beyond the schema's description of 'cart_id'. Baseline 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 clearly states the tool returns a direct checkout link for an existing shopping cart and explains its use (customer clicks and pays). It is distinct from sibling tools like 'create_cart' or 'check_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 implies usage when you have a cart and need a checkout link, but it does not provide explicit guidance on when to use versus alternatives, nor does it mention prerequisites like the cart must exist.
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?
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.
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.
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.
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.
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.
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.
| 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?
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.
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.
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.
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.
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.
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.
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!