smeltItem
Smelt items in Minecraft using a furnace by specifying the item name, fuel type, and quantity with the help of the MCP server's AI-controlled capabilities.
Instructions
Smelt items in a furnace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of items to smelt | |
fuelName | Yes | Name of the fuel to use | |
itemName | Yes | Name of the item to smelt |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of items to smelt",
"type": "number"
},
"fuelName": {
"description": "Name of the fuel to use",
"type": "string"
},
"itemName": {
"description": "Name of the item to smelt",
"type": "string"
}
},
"required": [
"itemName",
"fuelName",
"count"
],
"type": "object"
}