goToKnownLocation
Direct an AI agent to specific coordinates in Minecraft using this tool. Input X, Y, and Z values to navigate to a precise location, with an optional name for reference. Ensures accurate in-game positioning.
Instructions
Navigate to specific coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Optional: Name of the location | |
x | Yes | X coordinate | |
y | Yes | Y coordinate | |
z | Yes | Z coordinate |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Optional: Name of the location",
"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"
}