giveItemToSomeone
Transfer items to another player on a Minecraft server by specifying their username, item name, and quantity. Simplify in-game item sharing with this MCP Server tool.
Instructions
Give items to another player
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemCount | Yes | Number of items to give | |
itemName | Yes | Name of the item to give | |
userName | Yes | Username of the player to give items to |
Input Schema (JSON Schema)
{
"properties": {
"itemCount": {
"description": "Number of items to give",
"type": "number"
},
"itemName": {
"description": "Name of the item to give",
"type": "string"
},
"userName": {
"description": "Username of the player to give items to",
"type": "string"
}
},
"required": [
"userName",
"itemName",
"itemCount"
],
"type": "object"
}