send-chat
Send custom chat messages in Minecraft using the MCP Server. Enables AI-controlled characters or bots to communicate in-game through predefined commands.
Instructions
Send a chat message in-game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to send in chat |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Message to send in chat",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}