select_showtime
unverifiedv0.1Selects a movie and a specific showtime to initiate the checkout process.
Updated 6/6/2026 · Created 6/6/2026
Input Schema
{
"type": "object",
"required": [
"movie_id",
"date",
"time"
],
"properties": {
"date": {
"type": "string",
"description": "Show date in YYYY-MM-DD format"
},
"time": {
"type": "string",
"description": "Show start time in 12-hour format with AM/PM (e.g. 8:30 PM)"
},
"tickets": {
"type": "number",
"default": 1,
"description": "Number of tickets"
},
"movie_id": {
"type": "string",
"description": "The ID of the movie to select"
}
}
}Full Contract
{
"name": "select_showtime",
"description": "Selects a movie and a specific showtime to initiate the checkout process.",
"inputSchema": {
"type": "object",
"required": [
"movie_id",
"date",
"time"
],
"properties": {
"date": {
"type": "string",
"description": "Show date in YYYY-MM-DD format"
},
"time": {
"type": "string",
"description": "Show start time in 12-hour format with AM/PM (e.g. 8:30 PM)"
},
"tickets": {
"type": "number",
"default": 1,
"description": "Number of tickets"
},
"movie_id": {
"type": "string",
"description": "The ID of the movie to select"
}
}
}
}GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/ticket-booking/select_showtime