← Registry

General Tools

meni.ge

Provides menu retrieval, order placement, and table availability checking for restaurant systems.

2 endpoints13 known toolsFirst detected July 25, 2026Last detected August 29, 2026

ENDPOINT 1

https://api.meni.ge/llm/mcp

No auth detected

MCP server metadata

Name
meni-ge-llm-api
Version
1.0.0
Capabilities
tools
Server instructions

Tools for reading meni.ge restaurant menus, placing orders and reserving tables. A location is addressed by its uppercase domain code (from the menu URL or QR). Catalog questions ("do you have…", "recommend…"): search_products instead of paging through get_menu; get_item accepts itemIds for a bulk lookup. Ordering: get_menu → create_order → get_order_status. Cart flow: update_cart → get_cart → create_order(cartId); the cart view carries a checkoutUrl for handing the order to a human. Store questions ("are you open?", "do you deliver?", refunds, privacy): get_store_info / search_policies_and_faqs. Use idempotencyKey on create_order retries. Reservations: check_table_availability → create_reservation → get_reservation_status / cancel_reservation. Sign in (see .well-known/oauth-protected-resource) to unlock account data tools (resolve_domain, list_files, read_file, write_file, delete_file, write_signal) and client-site configuration tools (get_site_settings, update_site_settings, list_site_templates, apply_site_template, check_domain_availability, rename_site_domain).

Known tools 13

get_menu

Get the full menu of a meni.

Inferred read-only
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}.

Inferred read-only
search_products

Semantic search over the location's catalog: product/dish names, descriptions, specifications, brand, SKU/barcodes and attached docs.

Inferred read-only
update_cart

Build the guest order step by step in a server-side cart, the way a human uses the web cart.

Inferred read-only
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).

Inferred read-only
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), accepted payment methods and currency, shipping/return terms and links to the published legal documents.

Potential side effects
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.

Inferred read-only
create_order

Validate and place an order at a meni.

Inferred read-only
get_order_status

Check the status of an order previously created with create_order.

Inferred read-only
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).

Inferred read-only
create_reservation

Request a table reservation.

Inferred read-only
get_reservation_status

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

Inferred read-only
cancel_reservation

Cancel a reservation previously created with create_reservation.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.meni-ge-llm-api]
url = "https://api.meni.ge/llm/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "meni-ge-llm-api": {
      "type": "http",
      "url": "https://api.meni.ge/llm/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: meni-ge-llm-api
Remote MCP URL: https://api.meni.ge/llm/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "meni-ge-llm-api": {
      "url": "https://api.meni.ge/llm/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "meni-ge-llm-api": {
      "type": "http",
      "url": "https://api.meni.ge/llm/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "meni-ge-llm-api",
  "transport": "streamable-http",
  "url": "https://api.meni.ge/llm/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://api.meni.ge/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.meni-ge]
url = "https://api.meni.ge/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "meni-ge": {
      "type": "http",
      "url": "https://api.meni.ge/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: meni-ge
Remote MCP URL: https://api.meni.ge/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "meni-ge": {
      "url": "https://api.meni.ge/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "meni-ge": {
      "type": "http",
      "url": "https://api.meni.ge/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "meni-ge bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "meni-ge",
  "transport": "streamable-http",
  "url": "https://api.meni.ge/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for meni.ge was fetched 2026-08-04T02:40:33.044Z and is being refreshed.

Trust status Trusted

meni.ge is assessed as Trusted: Domain runs a meaningful technology spend, consistent with a real business.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.