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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/position-tools.ts:63-68 (handler)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"); }
- src/tools/position-tools.ts:59-69 (registration)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"); } );
- src/tools/position-tools.ts:62-62 (schema)Empty schema indicating the 'jump' tool requires no input parameters.{},