Skip to main content
Glama
zeeweebee

Minecraft MCP Server

by zeeweebee

jump

Command the Minecraft bot to jump using the MCP Server, enabling AI-controlled characters to perform in-game actions like movement and interaction.

Instructions

Make the bot jump

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'jump' tool. It briefly sets the bot's jump control state to true for 250ms, then false, and returns a success response.
    async (): Promise<McpResponse> => { try { bot.setControlState('jump', true); setTimeout(() => bot.setControlState('jump', false), 250); return createResponse("Successfully jumped"); } catch (error) { return createErrorResponse(error as Error); } }
  • src/bot.ts:214-228 (registration)
    Registration of the 'jump' tool on the MCP server, specifying name, description (empty schema), and inline handler function.
    server.tool( "jump", "Make the bot jump", {}, async (): Promise<McpResponse> => { try { bot.setControlState('jump', true); setTimeout(() => bot.setControlState('jump', false), 250); return createResponse("Successfully jumped"); } catch (error) { return createErrorResponse(error as Error); } } );

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/zeeweebee/mcp-server'

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