connectToServer
Establish a connection to a Minecraft server using host, port, username, and password. Facilitates remote control of player actions, including navigation, building, and chat, through natural language commands.
Instructions
Connect to a Minecraft server with the specified credentials
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | Minecraft server host address | |
password | No | Minecraft password (if using premium account) | |
port | No | Minecraft server port | |
username | Yes | Minecraft username | |
version | No | Minecraft version |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"host": {
"description": "Minecraft server host address",
"type": "string"
},
"password": {
"description": "Minecraft password (if using premium account)",
"type": "string"
},
"port": {
"default": 25565,
"description": "Minecraft server port",
"type": "number"
},
"username": {
"description": "Minecraft username",
"type": "string"
},
"version": {
"description": "Minecraft version",
"type": "string"
}
},
"required": [
"host",
"username"
],
"type": "object"
}