Catalog
io.github.nicklasmenschel/gerezi-mcp
OfficialManage restaurant bookings via Claude — read covers, find guests, move tables, send wedding quotes.
Manages restaurant bookings, seating, guest lookup, and event quote generation.
README not available yet.
Install
Configuration
Environment variables
GEREZI_API_KEYrequiredsecretYour Gerezi API key (tbl_live_*). Get one from https://www.gerezi.com/settings/api-keys
GEREZI_API_URLdefault https://www.gerezi.comGerezi API base URL. Defaults to https://www.gerezi.com — only override for self-hosted Gerezi installs.
GEREZI_RESTAURANT_SLUGOptional restaurant slug for logging context. The API key already scopes the request to your restaurant.
GEREZI_MCP_PHASEdefault 1Which tool surface to expose. "1" = read-only (5 tools). "2" = read+write (15 tools, includes booking creation, cancellation, quotes). Defaults to "1".
claude_desktop_config.json
{
"mcpServers": {
"gerezi-mcp": {
"command": "npx",
"args": [
"-y",
"@gerezi/mcp@0.1.3"
],
"env": {
"GEREZI_API_KEY": "<YOUR_GEREZI_API_KEY>",
"GEREZI_API_URL": "https://www.gerezi.com",
"GEREZI_RESTAURANT_SLUG": "<YOUR_GEREZI_RESTAURANT_SLUG>",
"GEREZI_MCP_PHASE": "1"
}
}
}
}