runAway
Escape threats in Minecraft by specifying the threat type, name, and run distance. Integrates with the MCP Server to enable AI-controlled character movement for survival scenarios.
Instructions
Run away from a threat
Input Schema
Name | Required | Description | Default |
---|---|---|---|
runDistance | No | Distance to run away (default: 20) | |
targetName | No | Optional: Specific name of the threat | |
targetType | Yes | Type of threat: 'player', 'mob', or 'animal' |
Input Schema (JSON Schema)
{
"properties": {
"runDistance": {
"description": "Distance to run away (default: 20)",
"type": "number"
},
"targetName": {
"description": "Optional: Specific name of the threat",
"type": "string"
},
"targetType": {
"description": "Type of threat: 'player', 'mob', or 'animal'",
"type": "string"
}
},
"required": [
"targetType"
],
"type": "object"
}