find-entity
Locate the nearest in-game entity of a specific type within a defined distance. Use this tool to efficiently search and identify entities in your Minecraft environment for enhanced control and interaction.
Instructions
Find the nearest entity of a specific type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxDistance | No | Maximum search distance (default: 16) | |
type | No | Type of entity to find (empty for any entity) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxDistance": {
"description": "Maximum search distance (default: 16)",
"type": "number"
},
"type": {
"description": "Type of entity to find (empty for any entity)",
"type": "string"
}
},
"type": "object"
}