MCP Minecraft Remote

by nacal

placeBlock

Precisely place blocks in Minecraft at specific coordinates using natural language commands through the MCP Minecraft Remote server. Define item name and X, Y, Z positions to build or modify in-game structures remotely.

Instructions

Place a block at the specified location

Input Schema

NameRequiredDescriptionDefault
itemNameYesName of the item to place
xYesX coordinate
yYesY coordinate
zYesZ 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" }
ID: 86ml5tqneo