MCP Minecraft Remote

by nacal
Verified

tossItem

Remove specified items from a Minecraft player's inventory by throwing them. Define the item name and quantity to manage inventory efficiently during gameplay.

Instructions

Throw items from inventory

Input Schema

NameRequiredDescriptionDefault
amountNoAmount of items to throw
itemNameYesName of the item to throw

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "default": 1, "description": "Amount of items to throw", "type": "number" }, "itemName": { "description": "Name of the item to throw", "type": "string" } }, "required": [ "itemName" ], "type": "object" }
ID: 86ml5tqneo