find-entity
Locate and retrieve the nearest specified entity in Minecraft using defined search parameters such as type and maximum distance. Integrates with MCP server for real-time in-game entity detection 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"
}