MCP Minecraft Remote

by nacal
Verified

equipItem

Equip a specified item from inventory to a chosen slot, such as hand, head, torso, legs, or feet, in Minecraft. Simplifies inventory management for remote server players using MCP Minecraft Remote.

Instructions

Equip an item from inventory to hand or armor slot

Input Schema

NameRequiredDescriptionDefault
destinationNoSlot to equip the item tohand
itemNameYesName of the item to equip

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "destination": { "default": "hand", "description": "Slot to equip the item to", "enum": [ "hand", "head", "torso", "legs", "feet" ], "type": "string" }, "itemName": { "description": "Name of the item to equip", "type": "string" } }, "required": [ "itemName" ], "type": "object" }
ID: 86ml5tqneo