digBlock
Remove a block at specific coordinates in Minecraft by specifying X, Y, and Z values, enabling precise block manipulation for remote server gameplay.
Instructions
Dig a block at the specified coordinates
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| x | Yes | X coordinate | |
| y | Yes | Y coordinate | |
| z | Yes | Z coordinate | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "x": {
      "description": "X coordinate",
      "type": "number"
    },
    "y": {
      "description": "Y coordinate",
      "type": "number"
    },
    "z": {
      "description": "Z coordinate",
      "type": "number"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "type": "object"
}