mcp-minecraft

by yuniko-software
Verified

move-to-position

Move the bot to a specific position

Input Schema

NameRequiredDescriptionDefault
rangeNoHow close to get to the target (default: 1)
xYesX coordinate
yYesY coordinate
zYesZ coordinate

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "range": { "description": "How close to get to the target (default: 1)", "type": "number" }, "x": { "description": "X coordinate", "type": "number" }, "y": { "description": "Y coordinate", "type": "number" }, "z": { "description": "Z coordinate", "type": "number" } }, "required": [ "x", "y", "z" ], "type": "object" }