send_message
Send chat messages to Minecraft Bedrock players via the MCP server. Enables clear communication for build progress, instructions, or updates during gameplay.
Instructions
Send a chat message to the connected Minecraft player. ALWAYS provide a message parameter. Use this to communicate with the player about build progress or instructions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The text message to send to the player (REQUIRED - never call this without a message) |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "The text message to send to the player (REQUIRED - never call this without a message)",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}