cookItem
Cook items in Minecraft using a furnace by specifying the item name, fuel, and quantity. Part of the MCP server’s features for automating in-game tasks.
Instructions
Cook an item in a furnace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of items to cook | |
fuelName | Yes | The fuel to use for cooking | |
itemName | Yes | The name of the item to cook |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of items to cook",
"type": "number"
},
"fuelName": {
"description": "The fuel to use for cooking",
"type": "string"
},
"itemName": {
"description": "The name of the item to cook",
"type": "string"
}
},
"required": [
"itemName",
"fuelName",
"count"
],
"type": "object"
}