set_pizza_size
unverifiedv0.1Set the pizza size directly or infer it based on the number of people.
Updated 6/6/2026 · Created 6/6/2026
Input Schema
{
"type": "object",
"properties": {
"size": {
"enum": [
"Small",
"Medium",
"Large",
"Extra Large"
],
"type": "string",
"description": "The specific size name."
},
"number_of_persons": {
"type": "number",
"description": "The number of people eating to help infer the correct size."
}
}
}Full Contract
{
"name": "set_pizza_size",
"description": "Set the pizza size directly or infer it based on the number of people.",
"inputSchema": {
"type": "object",
"properties": {
"size": {
"enum": [
"Small",
"Medium",
"Large",
"Extra Large"
],
"type": "string",
"description": "The specific size name."
},
"number_of_persons": {
"type": "number",
"description": "The number of people eating to help infer the correct size."
}
}
}
}GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/pizza-maker/set_pizza_size