complete_booking
unverifiedv0.1Complete the reservation for the selected hotel by providing guest information.
Updated 6/6/2026 · Created 6/6/2026
Input Schema
{
"type": "object",
"required": [
"firstName",
"lastName",
"email"
],
"properties": {
"email": {
"type": "string",
"description": "Email address for the reservation confirmation"
},
"lastName": {
"type": "string",
"description": "Last name of the primary guest"
},
"firstName": {
"type": "string",
"description": "First name of the primary guest"
}
}
}Full Contract
{
"name": "complete_booking",
"description": "Complete the reservation for the selected hotel by providing guest information.",
"inputSchema": {
"type": "object",
"required": [
"firstName",
"lastName",
"email"
],
"properties": {
"email": {
"type": "string",
"description": "Email address for the reservation confirmation"
},
"lastName": {
"type": "string",
"description": "Last name of the primary guest"
},
"firstName": {
"type": "string",
"description": "First name of the primary guest"
}
}
}
}GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/hotel-chain/complete_booking