MCPMC (Minecraft MCP)

find_blocks

Find nearby blocks of specific types. Use this to locate building materials or identify terrain.

Input Schema

NameRequiredDescriptionDefault
blockTypesYes
constraintsNo
maxCountNo
maxDistanceNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "blockTypes": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "constraints": { "additionalProperties": false, "properties": { "maxY": { "type": "number" }, "minY": { "type": "number" }, "requireReachable": { "default": false, "type": "boolean" } }, "type": "object" }, "maxCount": { "default": 1, "type": "number" }, "maxDistance": { "default": 32, "type": "number" } }, "required": [ "blockTypes" ], "type": "object" }