Skip to main content
Glama

Minecraft Bedrock MCP Server

by Mming-Lab

build_ellipsoid

Create custom ellipsoid structures in Minecraft Bedrock with adjustable dimensions for egg shapes, domes, or artistic designs. Specify center coordinates, radii, material, and hollow option for precise builds.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
centerXYesCenter X coordinate
centerYYesCenter Y coordinate
centerZYesCenter Z coordinate
hollowNoMake it hollow (true) for shell/room inside, or solid (false) for full ellipsoid sculpture
materialNoBlock type to build with (e.g. stone, glass, concrete, wool for colorful sculptures)minecraft:stone
radiusXYesWidth radius (east-west stretch). Large=wide shape, Small=narrow shape. Example: 10=wide, 5=narrow
radiusYYesHeight radius (vertical stretch). Large=tall shape, Small=flat shape. Example: 15=tall dome, 3=flat pancake
radiusZYesDepth radius (north-south stretch). Large=deep shape, Small=shallow shape. Example: 8=deep, 4=shallow

Input Schema (JSON Schema)

{ "properties": { "centerX": { "description": "Center X coordinate", "type": "number" }, "centerY": { "description": "Center Y coordinate", "type": "number" }, "centerZ": { "description": "Center Z coordinate", "type": "number" }, "hollow": { "default": false, "description": "Make it hollow (true) for shell/room inside, or solid (false) for full ellipsoid sculpture", "type": "boolean" }, "material": { "default": "minecraft:stone", "description": "Block type to build with (e.g. stone, glass, concrete, wool for colorful sculptures)", "type": "string" }, "radiusX": { "description": "Width radius (east-west stretch). Large=wide shape, Small=narrow shape. Example: 10=wide, 5=narrow", "maximum": 50, "minimum": 1, "type": "number" }, "radiusY": { "description": "Height radius (vertical stretch). Large=tall shape, Small=flat shape. Example: 15=tall dome, 3=flat pancake", "maximum": 50, "minimum": 1, "type": "number" }, "radiusZ": { "description": "Depth radius (north-south stretch). Large=deep shape, Small=shallow shape. Example: 8=deep, 4=shallow", "maximum": 50, "minimum": 1, "type": "number" } }, "required": [ "centerX", "centerY", "centerZ", "radiusX", "radiusY", "radiusZ" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mming-Lab/minecraft-bedrock-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server