manage_bookings
ActiveTool of clawshow
Create, query, update, and cancel bookings for any reservation-based business: restaurants, hotels, salons, clinics, event venues, rental properties. Namespace-isolated — each business has its own booking data. Input: action (create/query/update/cancel), booking details, namespace. Output: booking confirmation with ID, or filtered booking list. Supports date range queries, status filtering, and customer lookup. Includes automatic conflict detection for double-bookings. Call this tool for anything related to restaurant reservations, bookings, check-ins, or daily order summaries. Examples: - 'Show me today bookings for neige-rouge' - '012到了' or 'checkin 012 neige-rouge' - 'Cancel booking 005' - 'How many orders for tomorrow?' - 'Combien de commandes aujourd'hui?' - '今天有多少单?' Args: action: "query" | "checkin" | "cancel" | "summary" namespace: Restaurant namespace, e.g. "neige-rouge" booking_code: 3-digit booking code for checkin/cancel (e.g. "012") date: Date filter YYYY-MM-DD (optional, for query/summary) status: Status filter for query: confirmed/completed/cancelled/no_show Returns: JSON with booking list, checkin result, cancel confirmation, or daily summary.
Parameters schema
{
"type": "object",
"title": "manage_bookingsArguments",
"required": [
"action",
"namespace"
],
"properties": {
"date": {
"type": "string",
"title": "Date",
"default": ""
},
"action": {
"type": "string",
"title": "Action"
},
"status": {
"type": "string",
"title": "Status",
"default": ""
},
"namespace": {
"type": "string",
"title": "Namespace"
},
"booking_code": {
"type": "string",
"title": "Booking Code",
"default": ""
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
clawshow
https://github.com/jason2016/clawshow-mcp-server
2/7 registries