world
Control and manage Minecraft Bedrock world settings: adjust time, weather, day/night cycles, query world data, send messages, execute commands, and sequence actions for precise server operations.
Instructions
World management: time, weather, environment, day/night cycles, world queries, connections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | World management action to perform | |
command | No | Minecraft Bedrock Edition command to execute (without /). For correct syntax and available commands, use the minecraft_wiki tool to search for specific command information. Examples: "give @p diamond_sword", "tp @p 0 64 0", "setblock ~ ~ ~ stone" | |
duration | No | Weather duration in ticks (optional) | |
message | No | Message to send to all players | |
steps | No | Array of world actions for sequence. Each step should have "type" field and relevant parameters. | |
target | No | Target player for message (optional, defaults to all players) | |
time | No | Time in ticks (0-24000, where 0=dawn, 6000=noon, 12000=dusk, 18000=midnight) | |
weather | No | Weather type to set |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "World management action to perform",
"enum": [
"set_time",
"get_time",
"get_day",
"set_weather",
"get_weather",
"get_players",
"get_world_info",
"send_message",
"run_command",
"get_connection_info",
"sequence"
],
"type": "string"
},
"command": {
"description": "Minecraft Bedrock Edition command to execute (without /). For correct syntax and available commands, use the minecraft_wiki tool to search for specific command information. Examples: \"give @p diamond_sword\", \"tp @p 0 64 0\", \"setblock ~ ~ ~ stone\"",
"type": "string"
},
"duration": {
"description": "Weather duration in ticks (optional)",
"minimum": 0,
"type": "number"
},
"message": {
"description": "Message to send to all players",
"type": "string"
},
"steps": {
"description": "Array of world actions for sequence. Each step should have \"type\" field and relevant parameters.",
"type": "array"
},
"target": {
"description": "Target player for message (optional, defaults to all players)",
"type": "string"
},
"time": {
"description": "Time in ticks (0-24000, where 0=dawn, 6000=noon, 12000=dusk, 18000=midnight)",
"maximum": 24000,
"minimum": 0,
"type": "number"
},
"weather": {
"description": "Weather type to set",
"enum": [
"clear",
"rain",
"thunder"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}