craftItems
Craft specified items in Minecraft using a crafting table or inventory. Provide the item name and count to automate item creation, enhancing in-game efficiency with the MCP Server.
Instructions
Craft items using a crafting table or inventory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of items to craft | |
item | Yes | The name of the item to craft |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of items to craft",
"type": "number"
},
"item": {
"description": "The name of the item to craft",
"type": "string"
}
},
"required": [
"item",
"count"
],
"type": "object"
}