Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

ge.meni/guest

ge.meni/guest

Guest API for meni.ge restaurants: browse menus, place orders, reserve tables. No auth needed.

Uptime
100.0%
2 direct probes · 30d
Response
598ms
last probe
Tools
13
callable
Resources
0
readable
Prompts
0
available

Tools · 13

get_menu

Get the full menu of a meni.ge location: categories, items with prices, variant groups and addons, currency and ordering capabilities. domain = uppercase location code from the QR/menu URL.

get_item

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}.

search_products

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 i…

update_cart

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 upd…

get_cart

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 ar…

get_store_info

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…

search_policies_and_faqs

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. Retu…

create_order

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…

get_order_status

Check the status of an order previously created with create_order.

check_table_availability

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.

create_reservation

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). Option…

get_reservation_status

Status of a reservation created with create_reservation (pending/confirmed/seated).

cancel_reservation

Cancel a reservation previously created with create_reservation.

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "ge.meni/guest": {
      "url": "https://api.meni.ge/llm/mcp",
      "transport": "streamable-http"
    }
  }
}