Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
port | No | Custom port for the server | 8001 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
send_message | 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. |
execute_command | Execute a Minecraft command |
agent | Agent control: movement, building, mining, inventory, exploration, construction, resource gathering |
world | World management: time, weather, environment, day/night cycles, world queries, connections |
player | Player management: information, abilities, game modes, inventory, communication, permissions, items |
blocks | Block operations: placement, area filling, terrain queries, single blocks, large areas, surface detection |
system | System features: scoreboards, screen displays (titles, action bars), player UI, game management |
build_cube | Build CUBE/RECTANGLE: box, rectangle, wall, platform, room, house frame. Requires: x1,y1,z1,x2,y2,z2 |
build_line | Build a straight line of blocks between two points. Perfect for paths, roads, fences, bridges, pillars, or structural frameworks. Example: from (0,64,0) to (10,80,10) creates a diagonal line useful for building supports or artistic structures |
build_sphere | Build SPHERE: ball, dome, round structure, planet, orb. Requires: centerX,centerY,centerZ,radius |
build_cylinder | Build CYLINDER: tower, pillar, column, chimney, pipe, tube. Requires: centerX,centerY,centerZ,radius,height. Optional: axis |
build_paraboloid | Build PARABOLOID: satellite dish, bowl, dish, parabolic. Requires: centerX,centerY,centerZ,radius,height. Optional: axis,direction |
build_hyperboloid | Build HYPERBOLOID: cooling tower, hourglass, nuclear tower. Requires: centerX,centerY,centerZ,baseRadius,waistRadius,height. Optional: axis |
build_rotate | Rotate and copy a structure around a pivot point. Perfect for creating rotated copies of buildings, making symmetrical structures, or spinning decorations. Example: rotate a house 90° around its center to create multiple orientations |
build_transform | Transform structures by copying, rotating, mirroring, or scaling. Perfect for duplicating buildings, creating mirror images, or making scaled versions. Popular options: copy=duplicate, mirror_x=flip horizontally, scale_up=make 2x bigger |
build_torus | Build TORUS: donut, ring, circular fountain, arena seating, portal. Requires: centerX,centerY,centerZ,majorRadius,minorRadius. Optional: axis |
build_helix | Build HELIX/SPIRAL: spiral staircase, corkscrew, DNA model, twisted tower. Requires: centerX,centerY,centerZ,radius,height,turns. Optional: axis,direction,chirality |
build_ellipsoid | Build an ellipsoid (stretched/oval sphere) structure. Perfect for egg shapes, stretched domes, oval rooms, or artistic sculptures. Different radii create unique shapes. Example: radiusX=10, radiusY=5, radiusZ=10 creates a flattened dome |