Skip to main content
Glama

Minecraft Bedrock MCP Server

by Mming-Lab

build_paraboloid

Create precise paraboloid structures like satellite dishes or bowls in Minecraft Bedrock. Define center coordinates, radius, height, and optional axis, direction, and material for customization.

Instructions

Build PARABOLOID: satellite dish, bowl, dish, parabolic. Requires: centerX,centerY,centerZ,radius,height. Optional: axis,direction

Input Schema

NameRequiredDescriptionDefault
axisNoParaboloid axis direction: x (east-west), y (up-down), z (north-south)y
centerXYesCenter X coordinate (east-west position of paraboloid base center)
centerYYesCenter Y coordinate (height/vertical position of paraboloid base, typically 64-100)
centerZYesCenter Z coordinate (north-south position of paraboloid base center)
directionNoOpening direction: positive (opens toward +axis), negative (opens toward -axis)positive
heightYesHeight of the paraboloid in blocks. Small: 5-8, Medium: 10-15, Large: 20-30
hollowNoMake it hollow (true) for dish shell, or solid (false) for full paraboloid
materialNoBlock type to build with (e.g. stone, glass, wool, concrete, etc.)minecraft:stone
radiusYesMaximum radius at the top of the paraboloid in blocks. Small: 3-5, Medium: 8-12, Large: 15-20

Input Schema (JSON Schema)

{ "properties": { "axis": { "default": "y", "description": "Paraboloid axis direction: x (east-west), y (up-down), z (north-south)", "enum": [ "x", "y", "z" ], "type": "string" }, "centerX": { "description": "Center X coordinate (east-west position of paraboloid base center)", "type": "number" }, "centerY": { "description": "Center Y coordinate (height/vertical position of paraboloid base, typically 64-100)", "type": "number" }, "centerZ": { "description": "Center Z coordinate (north-south position of paraboloid base center)", "type": "number" }, "direction": { "default": "positive", "description": "Opening direction: positive (opens toward +axis), negative (opens toward -axis)", "enum": [ "positive", "negative" ], "type": "string" }, "height": { "description": "Height of the paraboloid in blocks. Small: 5-8, Medium: 10-15, Large: 20-30", "maximum": 50, "minimum": 1, "type": "number" }, "hollow": { "default": false, "description": "Make it hollow (true) for dish shell, or solid (false) for full paraboloid", "type": "boolean" }, "material": { "default": "minecraft:stone", "description": "Block type to build with (e.g. stone, glass, wool, concrete, etc.)", "type": "string" }, "radius": { "description": "Maximum radius at the top of the paraboloid in blocks. Small: 3-5, Medium: 8-12, Large: 15-20", "maximum": 50, "minimum": 2, "type": "number" } }, "required": [ "centerX", "centerY", "centerZ", "radius", "height" ], "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