equip-item
Equip a specific item in Minecraft by specifying its name and destination (e.g., hand) using MCP-minecraft server, enabling real-time character control through the Mineflayer API.
Instructions
Equip a specific item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | No | Where to equip the item (default: 'hand') | |
itemName | Yes | Name 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"
}