goToSomeone
Navigate to a specific player in Minecraft, allowing you to maintain a set distance and optionally follow them using the MCP Server's client library.
Instructions
Navigate to another player
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distance | No | Distance to maintain from the player (default: 3) | |
keepFollowing | No | Continue following the player (default: false) | |
userName | Yes | Username of the player to go to |
Input Schema (JSON Schema)
{
"properties": {
"distance": {
"description": "Distance to maintain from the player (default: 3)",
"type": "number"
},
"keepFollowing": {
"description": "Continue following the player (default: false)",
"type": "boolean"
},
"userName": {
"description": "Username of the player to go to",
"type": "string"
}
},
"required": [
"userName"
],
"type": "object"
}