Inspect Block At Coordinates
minecraft_get_block_atGet block details at exact coordinates in a Minecraft world. Returns block name, hardness, and diggability, or an error if chunk is not loaded.
Instructions
Looks up a single block at exact world coordinates.
Returns: { x, y, z, name, hardness: number | null, diggable: boolean } or an error if the chunk isn't loaded.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | World X coordinate | |
| y | Yes | World Y coordinate | |
| z | Yes | World Z coordinate |