placeBlock
Place a specific block at designated coordinates in Minecraft using precise x, y, z values and item name. Enables controlled building and editing in remote servers.
Instructions
Place a block at the specified location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemName | Yes | Name of the item to place | |
x | Yes | X coordinate | |
y | Yes | Y coordinate | |
z | Yes | Z coordinate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"itemName": {
"description": "Name of the item to place",
"type": "string"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
},
"z": {
"description": "Z coordinate",
"type": "number"
}
},
"required": [
"x",
"y",
"z",
"itemName"
],
"type": "object"
}