MCP Minecraft Remote

by nacal
Verified

connectToServer

Establish a connection to a Minecraft server by providing host, username, and optional credentials like password, port, and version for remote gameplay and control via AI.

Instructions

Connect to a Minecraft server with the specified credentials

Input Schema

NameRequiredDescriptionDefault
hostYesMinecraft server host address
passwordNoMinecraft password (if using premium account)
portNoMinecraft server port
usernameYesMinecraft username
versionNoMinecraft version

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "host": { "description": "Minecraft server host address", "type": "string" }, "password": { "description": "Minecraft password (if using premium account)", "type": "string" }, "port": { "default": 25565, "description": "Minecraft server port", "type": "number" }, "username": { "description": "Minecraft username", "type": "string" }, "version": { "description": "Minecraft version", "type": "string" } }, "required": [ "host", "username" ], "type": "object" }
ID: 86ml5tqneo