MCPMC (Minecraft MCP)

place_block

Place a block from the bot's inventory at the specified position. Use this for building structures.

Input Schema

NameRequiredDescriptionDefault
blockNameYes
xYes
yYes
zYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "blockName": { "type": "string" }, "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" } }, "required": [ "x", "y", "z", "blockName" ], "type": "object" }