add_topping
unverifiedv0.1Add one or more toppings to the pizza
Updated 6/6/2026 ยท Created 6/6/2026
Input Schema
{
"type": "object",
"required": [
"topping"
],
"properties": {
"count": {
"type": "integer",
"minimum": 1,
"description": "Number of toppings to add"
},
"topping": {
"enum": [
"๐",
"๐",
"๐ฟ",
"๐",
"๐ซ",
"๐ฅ",
"๐ง
",
"๐ซ",
"๐ฝ",
"๐ถ๏ธ",
"๐"
],
"type": "string"
}
}
}Full Contract
{
"name": "add_topping",
"description": "Add one or more toppings to the pizza",
"inputSchema": {
"type": "object",
"required": [
"topping"
],
"properties": {
"count": {
"type": "integer",
"minimum": 1,
"description": "Number of toppings to add"
},
"topping": {
"enum": [
"๐",
"๐",
"๐ฟ",
"๐",
"๐ซ",
"๐ฅ",
"๐ง
",
"๐ซ",
"๐ฝ",
"๐ถ๏ธ",
"๐"
],
"type": "string"
}
}
}
}GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/pizza-maker/add_topping