attackEntity
Target and attack a specific entity in Minecraft using its entity ID with the MCP Minecraft Remote server, enabling precise control for AI-assisted gameplay.
Instructions
Attack a specific entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityId | Yes | ID of the entity to attack |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entityId": {
"description": "ID of the entity to attack",
"type": "number"
}
},
"required": [
"entityId"
],
"type": "object"
}