getNearbyEntities
Retrieve a list of all entities within a specified range in Minecraft. Ideal for tracking mobs, players, or objects nearby, enabling precise entity interaction and navigation on MCP Minecraft Remote servers.
Instructions
Get a list of all entities nearby
Input Schema
Name | Required | Description | Default |
---|---|---|---|
range | No | Range in blocks to search for entities |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"range": {
"default": 10,
"description": "Range in blocks to search for entities",
"type": "number"
}
},
"type": "object"
}