mcp-minecraft

by yuniko-software
Verified

equip-item

Equip a specific item

Input Schema

NameRequiredDescriptionDefault
destinationNoWhere to equip the item (default: 'hand')
itemNameYesName of the item to equip

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "destination": { "description": "Where to equip the item (default: 'hand')", "type": "string" }, "itemName": { "description": "Name of the item to equip", "type": "string" } }, "required": [ "itemName" ], "type": "object" }