Smelt / Cook Item in Furnace
minecraft_use_furnaceSmelt items automatically: loads input material and fuel into a furnace, waits for smelting, and collects the output.
Instructions
Opens a furnace (or blast furnace / smoker) at the given coordinates, loads input material and fuel from the bot's inventory, waits for smelting to progress, then collects whatever output is ready and closes the furnace. One call handles the whole loop.
Args:
input_item: material to smelt, e.g. "raw_iron", "raw_beef", "sand"
fuel_item: fuel to burn, e.g. "coal", "oak_planks". Omit if the furnace already has fuel loaded.
count: how many items to smelt (default 1)
wait_seconds: how long to wait before collecting output (default 12; vanilla smelting is ~10s/item with normal fuel). Call again to collect more once it's finished.
Returns: { message, collected: number, itemName: string | null } Errors: no furnace there, missing input/fuel in inventory, or unreachable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes | ||
| z | Yes | ||
| count | No | ||
| fuel_item | No | ||
| input_item | Yes | ||
| wait_seconds | No |