Minecraft Drop Tool
Drops items from inventory into the world as item entities. Embodied manipulation that physically places items in the world.
Purpose
Item dropping for inventory management, item sharing, and world modification. Creates item entities in the world that can be picked up by the bot or other players.
Input
value: Item name to drop (preferred)item: Item name to drop (alternative to value)count: Integer (optional, default: all)scatter: Boolean (optional, default: false)
Output
Returns uniform_return format with:
value: Text summary of dropped itemsdata: Structured data dict (machine-readable). Key fields:success: Booleandropped: Array of{item: string, count: int}
Behavior & Performance
- Drops items as entities in the world
- Default behavior drops all items of specified type
- Scatter option spreads items when dropping multiple
Guidelines
- Use
mc-inventoryfirst to check available items - Item name must match exactly
- Dropped items become entities that can be picked up
- Use
mc-observeand inspectentities.by_category.item/entities.nearbyto see dropped items
Usage Examples
Drop one item:
{"type":"mc-drop","item":"stone","count":1,"out":"$drop"}
Drop all items of type:
{"type":"mc-drop","value":"dirt","out":"$drop_all"}