Walk To Coordinates
minecraft_goto_positionNavigate the bot to exact coordinates using pathfinding, avoiding obstacles and crossing terrain. Confirms arrival or reports when destination is unreachable.
Instructions
Paths the bot to a target position using pathfinding (navigates around obstacles, up stairs, across gaps it can jump). Blocking call — resolves once the bot arrives or pathfinding times out (60s).
Returns: { message: string, position: { x, y, z } } on arrival. Errors: unreachable destination, timeout, or no path found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes | ||
| z | Yes | ||
| range | No | How close counts as 'arrived', in blocks. 0 = exact block. |