place-block
Place a block at specific coordinates (x, y, z) in Minecraft using the MCP Server, with optional face direction for precise placement.
Instructions
Place a block at the specified position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
faceDirection | No | Direction to place against (default: 'down') | |
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": {
"faceDirection": {
"description": "Direction to place against (default: 'down')",
"enum": [
"up",
"down",
"north",
"south",
"east",
"west"
],
"type": "string"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
},
"z": {
"description": "Z coordinate",
"type": "number"
}
},
"required": [
"x",
"y",
"z"
],
"type": "object"
}