guest
Server Details
Guest API for meni.ge restaurants: browse menus, place orders, reserve tables. No auth needed.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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.9/5 across 13 of 13 tools scored. Lowest: 2.7/5.
Each tool targets a distinct resource/action: menu, item, search, cart, order, reservation, availability, store info, and policies. Even similar tools like get_item vs search_products are clearly differentiated by exact lookup vs semantic search. There is no meaningful overlap.
All tools follow a consistent verb_noun pattern in snake_case (get_, create_, cancel_, check_, update_, search_). No mixed conventions or stylistic deviations exist.
13 tools is well-scoped for the guest-facing restaurant domain, covering menu browsing, search, cart, orders, reservations, store info, and policies. Each tool is justified and the count is within the ideal range.
Core lifecycle coverage is solid: menu, cart, order placement/status, reservations, and availability are all covered. The only notable gap is the absence of an order cancellation tool, but this may be intentional and does not block primary workflows.
Available Tools
13 toolscancel_reservationCInspect
Cancel a reservation previously created with create_reservation.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| reservationId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full burden but provides no details about side effects, permissions, or reversibility beyond the obvious cancellation.
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, but it is too sparse to be maximally helpful; could include more context without becoming verbose.
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 and only two parameters, the description lacks completeness by omitting return behavior, error conditions, and parameter descriptions.
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 0% and the description adds no meaning to the two parameters (domain, reservationId).
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 action (cancel) and the resource (reservation), and distinguishes from sibling tools like create_reservation and check_table_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?
No explicit guidance on when to use this tool versus alternatives; only implicit that it applies to reservations created with create_reservation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_table_availabilityAInspect
Which tables of the location are free or busy in a given time window (uses the floor plan published by the restaurant). Pass the chosen table id to create_reservation as tableId.
| Name | Required | Description | Default |
|---|---|---|---|
| start | Yes | ISO 8601 datetime | |
| domain | Yes | ||
| durationMinutes | No |
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. It implies the tool is read-only by stating it checks availability, but does not explicitly declare it as non-destructive or safe. More transparency on side effects or permissions would be beneficial.
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, no unnecessary words, and the key information is front-loaded. Every sentence 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?
The description covers the basic purpose and usage result, but lacks explanation of output format (what the tool returns) and does not describe all parameters. Given no output schema, the return value should be mentioned.
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 only 33% (start parameter has a description). The description adds no explanation for 'domain' or 'durationMinutes', failing to compensate for the schema gap. It mentions 'table id' but that is not a parameter of this tool.
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 checks which tables are free or busy in a given time window, and it explicitly references the floor plan and the connection to create_reservation. This differentiates it from sibling tools like create_reservation or get_reservation_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?
Provides clear guidance on when to use the tool (before creating a reservation) and directs the user to pass the chosen table id to create_reservation. However, it does not explicitly state when not to use this tool or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_orderAInspect
Validate and place an order at a meni.ge location. Returns orderId (keep it — it is the access token for status checks) and the computed total. customer.name/phone are required for pickup and delivery; delivery.address is required for delivery. Pass either items (inline) or cartId (the cart built with update_cart) — not both. Always pass idempotencyKey when you might retry: the same key within 48h returns the original order instead of placing a second one.
| Name | Required | Description | Default |
|---|---|---|---|
| items | No | ||
| notes | No | ||
| cartId | No | Order this cart; mutually exclusive with items | |
| domain | Yes | ||
| pickup | No | ||
| qrCode | No | ||
| customer | No | ||
| delivery | No | ||
| language | No | ||
| orderType | No | ||
| paymentMethod | No | ||
| idempotencyKey | No | Retry guard, e.g. a UUID you keep for this order attempt |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full disclosure responsibility. It reveals that orderId serves as an access token for status checks, that idempotencyKey deduplicates within 48 hours, and the return includes computed total. This is rich behavioral context beyond the schema.
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?
Three sentences, front-loaded with action, followed by return values, required-field conditions, and retry guidance. No fluff and every sentence contributes to successful invocation.
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 12 nested parameters, no output schema, and no annotations, the description provides essential information: returns, idempotency, and order-source options. It does not explain validation failure behavior or payment details, but the most critical usage contracts are covered.
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 only 17%, so the description must add meaning. It clarifies mutual exclusivity of items/cartId, required customer fields, delivery address requirement, and idempotencyKey semantics. However, several parameters (orderType, paymentMethod, pickup.scheduledFor, qrCode) are only defined in the schema without description or narrative, so coverage remains partial.
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 function: validate and place an order at a meni.ge location. It specifies the resource (order) and differentiates from sibling tools like create_reservation or update_cart by focusing on order placement and providing return values.
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?
Provides explicit usage rules: pass either items or cartId (not both), customer.name/phone required for pickup/delivery, delivery.address for delivery, and idempotencyKey for retry scenarios. These are concrete when-to-use instructions that prevent misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_reservationAInspect
Request a table reservation. Starts as "pending" until the restaurant confirms — check with get_reservation_status. Returns reservationId (keep it: it is the token for status and cancellation). Optionally bind a specific table via tableId (from check_table_availability).
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Guest name | |
| phone | No | ||
| start | Yes | ISO 8601 datetime | |
| codeId | No | ||
| domain | Yes | ||
| comment | No | ||
| tableId | No | ||
| partySize | No | ||
| durationMinutes | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. It discloses pending status and need to check confirmation, and that reservationId is returned. However, it does not describe side effects, authentication needs, or failure modes. Adequate but not comprehensive.
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?
Three sentences, front-loaded with purpose, no fluff. Efficiently communicates key workflow and important return value (reservationId). Minor improvement could be adding structure for multiple params.
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 9 parameters, no output schema, and no annotations, description covers essential workflow but leaves many parameter details unexplained. Missing information on return structure and param relationships beyond tableId.
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 only 22% schema coverage, description adds value by explaining tableId's origin (check_table_availability). But other parameters (phone, partySize, durationMinutes, comment, domain, codeId) lack explanation. Helps somewhat but insufficient.
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 clearly states 'Request a table reservation' – specific verb and resource. It distinguishes from sibling tools by referencing get_reservation_status for status checking, cancel_reservation for cancellation, and check_table_availability for table binding.
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?
Provides when-to-use (making reservation) and references alternatives for status (get_reservation_status) and table lookup (check_table_availability). Does not explicitly state when not to use, but context implies it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_cartAInspect
Read a cart created with update_cart: lines with live unit prices, subtotal, item count, the checkoutUrl for a human hand-off and the expiry date (carts live 7 days). Lines whose item left the menu are flagged unavailable and excluded from the subtotal.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | ||
| domain | Yes | ||
| language | No |
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 goes beyond a simple read operation by revealing live unit prices, subtotal calculation, item count, checkoutUrl for human hand-off, a 7-day expiry, and the fact that unavailable lines are flagged and excluded from the subtotal. This is rich, actionable context.
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, dense sentence that front-loads the core purpose ('Read a cart created with update_cart') before enumerating the key response attributes. Every clause earns its place, providing substantial information without unnecessary padding.
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 retrieval tool, the description is remarkably complete. It covers what the response contains, the lifetime of the cart, and the handling of unavailable items. The lack of an output schema is compensated by the explicit enumeration of returned fields. No critical behavioral gaps remain.
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 zero description coverage, and the tool description does not add any information about the parameters (cartId, domain, language). It does not explain required vs optional fields, format expectations, or how domain/language affect the response. The parameter names are self-explanatory but the description fails to provide any additional meaning.
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 verb 'Read' and the resource 'cart created with update_cart', distinguishing it from sibling tools like create_order or get_order_status. It also enumerates the specific contents of the response (lines, prices, subtotal, item count, checkoutUrl, expiry), making the tool's purpose unambiguous.
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 specifies that this tool reads a cart that was previously created or updated with the sibling update_cart tool, providing a clear usage context. It does not explicitly mention alternatives or exclusions, but the linkage to update_cart implicitly guides the agent on when 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_itemAInspect
Get one menu item with its variant groups and addons, or several at once: pass itemIds (up to 10) instead of itemId to look items up in bulk — the bulk answer is {items, notFound}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| itemId | No | One item; mutually exclusive with itemIds | |
| itemIds | No | Bulk lookup, up to 10 ids; mutually exclusive with itemId | |
| language | No |
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 of behavioral disclosure. It reveals that bulk lookup returns an {items, notFound} structure, useful behavior. However, it does not explicitly state read-only nature, authentication, or other side effects, though the get verb implies safety.
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 efficiently conveys the main purpose and bulk mode. It is front-loaded and avoids fluff, though it is slightly dense with the parenthetical and em-dash. No redundant 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?
The description covers the core functionality, single vs. bulk, and the bulk response structure, which is important given no output schema. It does not explain the domain and language parameters or provide a full return schema for single items, but it gives enough context for basic usage.
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 50%; itemId and itemIds have descriptions, but domain and language are undocumented. The description adds meaning to itemId/itemIds by clarifying their mutual exclusivity and the bulk response shape. It does not explain domain or language, so it only partially compensates for the schema gap.
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: retrieve one menu item with variant groups and addons, or multiple items via bulk lookup. The verb 'Get' and specific resource 'menu item with its variant groups and addons' distinguish it from sibling tools like get_menu and search_products.
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 for single vs. bulk usage, explicitly explaining when to pass itemId vs. itemIds and the max of 10. It does not mention alternative tools or exclusions, but the usage context for the tool's two modes 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_statusCInspect
Check the status of an order previously created with create_order.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| orderId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only says 'check', missing details on side effects, error handling, or read-only nature. Minimal transparency.
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 concise sentence with no unnecessary words or repetition.
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 and 2 parameters, the description lacks return value details and error behavior, making it 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?
Schema has 0% description coverage; description does not explain domain or orderId parameters at all.
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 clearly states the tool checks order status and references the associated create_order tool, distinguishing it from sibling reservation tools. However, it doesn't explicitly differentiate from get_reservation_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?
Implies usage after create_order but no explicit when-not or alternative guidance. Siblings listed but no comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reservation_statusBInspect
Status of a reservation created with create_reservation (pending/confirmed/seated).
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| reservationId | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states what the tool returns (status values) but says nothing about read-only behavior, error handling, authentication needs, or any side effects.
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 concisely states the tool's purpose. It is front-loaded with the core function, and every word contributes meaning, though it lacks supporting 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?
Given the tool has no output schema and incomplete parameter documentation, the description is insufficient for complete understanding. It omits important details such as how to form valid inputs and what happens in error 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?
Schema description coverage is 0%, meaning the schema provides no meaning for the parameters. The description does not mention domain or reservationId at all, leaving the agent with no explanation of what these parameters represent.
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 returns the status of a reservation, listing specific possible values (pending/confirmed/seated) and references the companion tool create_reservation. This distinguishes it from sibling tools like cancel_reservation 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 implies use after create_reservation by mentioning 'created with create_reservation', but it does not explicitly state when to use this tool vs alternatives, nor does it provide any conditions or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_store_infoAInspect
Facts about the location that are not on the menu: address, contacts, coordinates, working hours with openNow computed in the venue timezone, delivery and pickup terms (fees, minimum order, zones, ETA), accepted payment methods and currency, shipping/return terms and links to the published legal documents. Use this before answering "are you open?", "do you deliver?", "how much is delivery?".
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| language | No | ISO 639-1; falls back to the location default |
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 discloses significant behavioral context: openNow is computed in the venue timezone, it returns links to legal documents, and it lists the non-menu facts. The read-only nature is implicit, and while it does not mention auth or failure modes, the detail about timezone computation and return content goes beyond a simple statement.
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 dense sentence followed by a usage sentence. It is front-loaded with the main idea and lists details efficiently, but the enumeration is slightly long and could be shortened without losing meaning. Every part adds value, so it remains highly 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 the lack of an output schema, the description does a good job of listing what the tool returns (all categories of facts). It also covers usage context. The main gap is the unexplained 'domain' parameter, which prevents full completeness for an agent needing to invoke the tool correctly.
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 only 50% (language has a description, domain does not). The description does not explain the 'domain' parameter, which is required and opaque. It neither defines what 'domain' means nor relates it to the store context. The language parameter is partially covered by the schema, but the description adds no value for parameter understanding.
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 defines the tool's purpose: retrieving non-menu facts about a location, enumerating the specific categories (address, contacts, hours, delivery terms, payments, legal docs). This distinguishes it from sibling tools like get_menu, create_order, and search_policies_and_faqs.
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 explicitly states when to use the tool with concrete examples ('Use this before answering "are you open?", "do you deliver?", "how much is delivery?"'). It does not mention when not to use it or name alternatives, but the use cases are clear and sufficient for an AI agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_policies_and_faqsAInspect
Search the location's own published policies, FAQ entries and info pages (privacy, terms, returns, delivery, cookies, help articles) plus, when the owner allows it, their internal knowledge base. Returns short snippets with a link to the source. Use it for policy/help questions instead of guessing; use get_store_info when you need structured numbers.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many snippets to return (1–10, default 5) | |
| query | Yes | The guest question, in any language | |
| domain | Yes | ||
| language | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility, and it discloses key behaviors: it searches both published pages and, conditionally, internal knowledge bases, and returns short snippets with links. It does not mention authorization requirements or rate limits, but for a read/search tool the core behavior is clearly communicated.
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 main purpose, and every clause adds value: scope, conditional access, return format, and an explicit alternative. No wasted words.
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 search tool with no output schema and no annotations, the description provides a strong sense of what it returns (snippets with links), what it searches, and when to prefer another tool. It lacks some detail like error behavior or domain/language specifics, but overall it is reasonably complete.
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 only 50%; domain and language parameters lack descriptions in the schema. The description does not explain these parameters (or the limit parameter's behavior beyond the schema) and only implies domain through 'location's own'. It adds little semantic value over the schema and fails to compensate for the undocumented 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 searches a location's policies, FAQs, and info pages, with an optional internal knowledge base. It distinguishes itself by noting the return format (snippets with links) and explicitly contrasts with get_store_info for structured numbers.
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?
Provides explicit usage guidance: 'Use it for policy/help questions instead of guessing' and directly names an alternative ('use get_store_info when you need structured numbers'). This gives clear when-to-use and when-not-to-use direction relative to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_productsAInspect
Semantic search over the location's catalog: product/dish names, descriptions, specifications, brand, SKU/barcodes and attached docs. Use for "do you have…" / "recommend…" / "how much is…" questions instead of paging through get_menu. Returns matching items with prices and a relevance score; falls back with a note when the search index is unavailable for the location.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many items to return (1–10, default 6) | |
| query | Yes | What the guest is looking for, in any language | |
| domain | Yes | ||
| language | No | ISO 639-1 menu language, default en |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses meaningful behavior: it returns 'matching items with prices and a relevance score', notes fallback when the search index is unavailable, and indicates semantic (fuzzy) matching. It stops short of describing ordering details or permission requirements, but for a read-only search this is well above average.
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, no filler. The first sentence states purpose and scope, the second gives usage scenarios and return/fallback behavior. Every part 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?
No output schema or annotations exist, but the description covers what is searched, when to use it, what it returns, and a fallback scenario. It doesn't detail the item structure or error handling beyond the fallback, but for a search tool with four simple parameters this is sufficient for an agent to select and invoke it correctly.
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 covers three of four parameters (query, limit, language) with descriptions; the missing 'domain' parameter is hinted at by 'location's catalog' but not explicitly explained. Since schema coverage is 75% (just below the 80% baseline), the description adds little beyond the schema. It provides no new details on limit or language.
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 opens with 'Semantic search over the location's catalog' – a specific verb and resource. It enumerates searchable fields (names, descriptions, specifications, brand, SKU/barcodes, docs) which clearly distinguishes it from siblings like get_menu. The explicit 'instead of paging through get_menu' further differentiates it.
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 when-to-use examples ('do you have…' / 'recommend…' / 'how much is…') and names the alternative tool to avoid (get_menu). The fallback note also sets expectations for degraded mode, which is a clear usage signal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_cartAInspect
Build the guest order step by step in a server-side cart, the way a human uses the web cart. Without cartId a new cart is created (keep the returned cartId — it is the access token). Each entry of updates: {itemId, quantity, variants?, addons?, comment?} adds a line; {lineId, quantity} changes one; {lineId, quantity: 0} removes it. Prices are recomputed from the live menu on every read, never stored. The answer includes a checkoutUrl the human can open to finish in the normal web checkout, and the cart can be placed as an order with create_order(cartId).
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | No | Omit to create a new cart | |
| domain | Yes | ||
| updates | Yes | ||
| language | No |
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 reveals important behaviors: creating a new cart when cartId is absent, treating cartId as an access token, recomputing prices from the live menu on every read (never stored), including a checkoutUrl, and supporting add/change/remove operations. It does not mention permissions, reversibility, or error handling, but it provides substantial insight beyond the schema.
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 three-sentence paragraph that front-loads the main purpose and then provides necessary operational details. Each sentence adds unique value: creation semantics, update formats, and price/checkout behavior. It is somewhat dense but not bloated, appropriately sized for the tool's complexity.
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?
Despite having no output schema and only 25% schema description coverage, the description covers the essential invocation logic: how to add/change/remove lines, when to include cartId, what to do with the returned cartId, and how to place the order via create_order. It also mentions the checkoutUrl in the response. Missing are details about the full return structure, error cases, and authorization requirements, but for the described use case it is largely complete.
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 only 25% (only cartId has a description), so the description compensates by explaining the complex 'updates' parameter in detail: the exact shapes for adding, changing, and removing lines, and the meaning of cartId as an access token. It does not elaborate on 'domain' and 'language', leaving those ambiguously documented, but the critical parameter semantics are well covered.
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 function: 'Build the guest order step by step in a server-side cart,' using a specific verb ('build') and resource ('cart'). It distinguishes itself from siblings by explicitly noting that the cart 'can be placed as an order with create_order(cartId)' and implying reading via get_cart. The scope (server-side cart, guest order) is precise.
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 for when to use the tool: to build a guest order step by step, and it names an alternative, create_order, for placing the cart as an order. It also explains the conditions for creating a new cart (omitting cartId) versus updating an existing one. However, it does not explicitly state when not to use this tool or mention alternatives like get_cart for reading.
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
- AlicenseAqualityCmaintenanceAn unofficial Model Context Protocol server for the efood.gr consumer app API that lets you discover restaurants, browse menus, build a cart, and place real orders on efood.gr.12MIT
- Flicense-qualityDmaintenanceEnables simulating customer orders from a dummy restaurant menu and tracking their status in real-time via RESTful APIs.
- AlicenseAqualityDmaintenanceMCP server for Getir partner API (Turkey). Manage orders, products, pricing, and store status for your Getir restaurant via Bearer token authentication.86MIT
- Flicense-qualityBmaintenanceProvides a RESTful interface to DoorDash consumer services, eliminating the need for clients to handle JSON-RPC or SSE. Users can browse restaurants, manage carts, and fetch order receipts via simple HTTP endpoints.3