Skip to main content
Glama

jump

Initiate bot jumps in Minecraft using natural language commands. Control bot movement in real-time via the MCP server to explore and interact within the game environment.

Instructions

Make the bot jump

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that makes the Minecraft bot jump by temporarily enabling the jump control state.
    async () => { const bot = getBot(); bot.setControlState('jump', true); setTimeout(() => bot.setControlState('jump', false), 250); return factory.createResponse("Successfully jumped"); }
  • Registers the 'jump' tool with the ToolFactory, specifying name, description, schema, and handler.
    factory.registerTool( "jump", "Make the bot jump", {}, async () => { const bot = getBot(); bot.setControlState('jump', true); setTimeout(() => bot.setControlState('jump', false), 250); return factory.createResponse("Successfully jumped"); } );
  • Empty schema indicating the 'jump' tool requires no input parameters.
    {},

Other Tools

Related Tools

Latest Blog Posts

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/yuniko-software/minecraft-mcp-server'

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