F

french-bistro

Chrome Labs restaurant reservation demo

1action
https://googlechromelabs.github.io/webmcp-tools/demos/french-bistro/

demo · Travel & Booking · JSON · API for agents

Tools 1 tool

book_table_le_petit_bistroaction

Initiates a dining reservation request at Le Petit Bistro. Accepts customer details, timing, and seating preferences.

View tool JSON
{
  "name": "book_table_le_petit_bistro",
  "kind": "action",
  "impl": "declarative",
  "description": "Initiates a dining reservation request at Le Petit Bistro. Accepts customer details, timing, and seating preferences.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "e.g. Alexander Hamilton"
      },
      "phone": {
        "type": "string",
        "description": "(555) 000-0000"
      },
      "date": {
        "type": "string"
      },
      "time": {
        "type": "string"
      },
      "guests": {
        "type": "string",
        "enum": [
          "1",
          "2",
          "3",
          "4",
          "5",
          "6"
        ]
      },
      "seating": {
        "type": "string",
        "enum": [
          "Main Dining",
          "Terrace",
          "Private Booth",
          "Bar"
        ]
      },
      "requests": {
        "type": "string",
        "description": "Allergies, anniversaries, high chair..."
      }
    },
    "required": [
      "name",
      "phone",
      "date",
      "time",
      "guests"
    ]
  }
}