minecraft-rcon-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MC_RCON_HOST | No | The hostname or IP address of the Minecraft RCON server. Defaults to 127.0.0.1. | 127.0.0.1 |
| MC_RCON_PORT | No | The port of the Minecraft RCON server. Defaults to 25575. | 25575 |
| MC_RCON_PASSWORD | Yes | The RCON password from server.properties. Required. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mc_commandA | Виконує БУДЬ-яку vanilla- чи plugin-команду через RCON (без провідного "/" — додається сам, якщо AI його все ж напише). Найзагальніший інструмент тут - усе, чого не покривають структуровані mc_* нижче (наприклад /gamemode, /effect, /fill, команди плагінів). Повертає сирий текстовий вивід сервера як є. |
| mc_list_playersA | Повертає кількість і ніки гравців, підключених зараз до сервера (/list). |
| mc_sayA | Транслює повідомлення в чат усім гравцям від імені сервера (/say). |
| mc_teleportB | Телепортує target (нік гравця або vanilla-селектор на кшталт @a/@p/@e[type=...]) у destination — координати "x y z" АБО нік/селектор іншого гравця/сутності (/tp). |
| mc_giveA | Видає item (напр. "diamond", "minecraft:diamond_sword") гравцю player у кількості count (типово 1) (/give). |
| mc_set_weatherB | Встановлює погоду на сервері: "clear", "rain" чи "thunder", опційно на duration_seconds секунд (/weather). |
| mc_set_timeA | Встановлює ігровий час: число тіків АБО ключове слово ("day", "night", "noon", "midnight") (/time set). |
| mc_kickA | Відключає гравця player від сервера, опційно з причиною reason, показаною йому (/kick). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each structured tool targets a clear Minecraft operation (players, teleport, give, weather, time, kick), so they are easy to distinguish. There is intentional overlap with mc_command, which can run anything, but its description explicitly frames it as the fallback for cases not covered by the structured tools.
All tools share a consistent mc_ prefix and snake_case style, and most follow a verb_noun pattern like mc_set_weather, mc_list_players, and mc_kick. mc_command is the only slight deviation since it is noun-only, but it remains readable and fits the naming family.
Eight tools is well-scoped for a Minecraft RCON management server. The structured wrappers cover common admin operations while mc_command provides general-purpose coverage, so nothing feels excessive or too sparse.
The tool surface covers major server administration actions: chat, player listing/kicking, teleportation, item giving, weather, and time. mc_command fills any remaining gaps like bans or plugin commands, though a couple of structured wrappers (e.g. difficulty, ban) would make the set feel more complete.