joinGame
Spawn a bot into Minecraft using a username. Specify host and port to connect to any Minecraft server. Enables AI agents to join and control in-game actions for tasks like movement, crafting, and building.
Instructions
Spawn a bot into the Minecraft game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | No | Minecraft server host (defaults to 'localhost' or command line option) | |
port | No | Minecraft server port (defaults to 25565 or command line option) | |
username | Yes | The username for the bot |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "Minecraft server host (defaults to 'localhost' or command line option)",
"type": "string"
},
"port": {
"description": "Minecraft server port (defaults to 25565 or command line option)",
"type": "number"
},
"username": {
"description": "The username for the bot",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}