sendChat
Send chat messages to a Minecraft server using natural language commands, enabling seamless communication for AI-assisted in-game interactions.
Instructions
Send a chat message to the Minecraft server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to send to the server |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Message to send to the server",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}