Skip to main content
Glama
Ver-zhzh

Minecraft Server MCP

by Ver-zhzh

Minecraft Server MCP

PyPI version Python version License Downloads

🎮 AI-Powered Minecraft Server Management via Model Context Protocol

English | 中文

Quick Install

pip install minecraft-server-mcp

📦 PyPI Package📖 Documentation🐛 Issues


📖 English Documentation

Overview

Minecraft Server MCP is a Model Context Protocol (MCP) server implementation that enables AI assistants to interact with and manage Minecraft servers through a standardized interface. This project bridges AI capabilities with Minecraft server administration, making it easy to:

  • 🎮 Monitor server status and performance in real-time

  • 👥 Manage players and query online status

  • 🔌 View and manage installed plugins

  • 📝 Execute server commands programmatically

  • 📊 Access and filter server logs, errors, and warnings

  • 🔗 Connect to multiple Minecraft servers simultaneously

Architecture

The project consists of two main components:

  1. Python MCP Server (src/smc/) - Implements the Model Context Protocol, providing a standardized interface for AI assistants

  2. Java Minecraft Plugin (plugin/) - Runs inside your Minecraft server, exposing an HTTP API for server management

Table of Contents


Installation

Prerequisites

  • Python: 3.12 or higher

  • Minecraft Server: Spigot/Paper 1.8.9-1.21.x (excluding 1.17)

  • Java: JDK 8 or higher (for building the plugin)

  • Maven: For building the Minecraft plugin

Python MCP Server Setup

We recommend using uv for Python dependency management.

  1. Clone the repository:

git clone https://github.com/Ver-zhzh/MCP-For-Minecraft-Server.git
cd MCP-For-Minecraft-Server
  1. Install dependencies:

# Using uv (recommended)
uv sync

# Or using pip
pip install -e .
  1. Verify installation:

# Using uv
uv run python -m smc

# Or using pip
python -m smc

Minecraft Plugin Setup

  1. Build the plugin:

cd plugin
mvn clean package
  1. Install the plugin:

Copy the generated JAR file to your Minecraft server's plugins folder:

cp target/SMC-Plugin.jar /path/to/your/minecraft/server/plugins/
  1. Configure the plugin:

Edit plugins/SMC-Plugin/config.yml in your Minecraft server directory:

# HTTP API Configuration
http:
  port: 8080
  host: "0.0.0.0"

# Security
security:
  api_key: "your-secure-api-key-here"
  
# Logging
logging:
  level: INFO
  1. Restart your Minecraft server to load the plugin.


Quick Start

1. Start the Minecraft Server

Ensure your Minecraft server is running with the SMC Plugin installed.

2. Configure MCP Server

Set environment variables or create a configuration file:

export MINECRAFT_LOG_LEVEL=INFO
export MINECRAFT_LOG_FILE=smc-server.log

3. Run the MCP Server

# Using uv
uv run python -m smc

# Or using pip
python -m smc

4. Connect to Your Minecraft Server

Use the MCP client to connect:

{
  "tool": "connect",
  "arguments": {
    "url": "http://localhost:8080",
    "api_key": "your-secure-api-key-here",
    "timeout": 10
  }
}

5. Query Server Status

{
  "tool": "status",
  "arguments": {
    "api_key": "your-secure-api-key-here"
  }
}

Configuration

Environment Variables

Variable

Description

Default

MINECRAFT_LOG_LEVEL

Logging level (DEBUG, INFO, WARNING, ERROR)

ERROR

MINECRAFT_LOG_FILE

Path to log file

smc-server.log

Plugin Configuration

Located at plugins/SMC-Plugin/config.yml:

http:
  port: 8080              # HTTP API port
  host: "0.0.0.0"         # Bind address

security:
  api_key: "your-key"     # API authentication key

logging:
  level: INFO             # Plugin log level
  max_entries: 1000       # Maximum log entries to keep

Core Features

Connection Management

Connect to multiple Minecraft servers using unique API keys:

  • connect - Establish connection to a server

  • disconnect - Close connection to a server

  • list_servers - View all active connections

Server Monitoring

Get real-time server information:

  • status - Server version, online status, and basic info

  • plugins - List installed plugins with versions and authors

Player Management

Track and manage players:

  • player_list - Get online players with UUID and ping information

Log Analysis

Access comprehensive server logs:

  • get_logs - Retrieve logs with time-based filtering

  • get_errors - Filter error-level logs by plugin

  • get_warnings - Filter warning-level logs

Command Execution

Execute server commands programmatically:

  • send_command - Execute single or multiple commands

  • get_commands - List all available server commands


Available Tools

Tool Name

Description

Required Parameters

connect

Connect to a Minecraft server

url, api_key

disconnect

Disconnect from a server

api_key

list_servers

List all connected servers

None

status

Get server status and information

api_key

plugins

Get installed plugins list

api_key

send_command

Execute server commands

api_key, commands

get_logs

Retrieve server logs

api_key

player_list

Get online players

api_key

get_errors

Get error logs

api_key

get_warnings

Get warning logs

api_key

get_commands

List server commands

api_key


Development

Running Tests

# Python tests
uv run pytest

# Java plugin tests
cd plugin
mvn test

Project Structure

minecraft-server-mcp/
├── src/smc/                    # Python MCP server
│   ├── __init__.py
│   ├── server.py               # Main MCP server
│   ├── client.py               # HTTP client for plugin API
│   ├── tools.py                # MCP tool implementations
│   ├── config.py               # Configuration management
│   └── connection_manager.py   # Multi-server connection manager
├── plugin/                     # Java Minecraft plugin
│   ├── src/main/java/
│   │   └── com/smc/            # Plugin source code
│   ├── src/main/resources/
│   │   └── plugin.yml          # Plugin metadata
│   └── pom.xml                 # Maven configuration
├── .python-version             # Python version (3.12)
├── uv.lock                     # Dependency lock file
└── README.md                   # This file

Contributing

Contributions are welcome! Please follow these guidelines:

  1. Fork the repository

  2. Create a feature branch (git checkout -b feature/amazing-feature)

  3. Commit your changes (git commit -m 'Add amazing feature')

  4. Push to the branch (git push origin feature/amazing-feature)

  5. Open a Pull Request


License

This project is licensed under the MIT License - see the LICENSE file for details.


Related MCP server: MCSManager MCP Server

📖 中文文档

快速安装

pip install minecraft-server-mcp

📦 PyPI 包📖 文档🐛 问题反馈

概述

Minecraft Server MCP 是一个 Model Context Protocol (MCP) 服务器实现,使 AI 助手能够通过标准化接口与 Minecraft 服务器进行交互和管理。该项目将 AI 能力与 Minecraft 服务器管理相结合,轻松实现:

  • 🎮 实时监控服务器状态和性能

  • 👥 管理玩家并查询在线状态

  • 🔌 查看和管理已安装的插件

  • 📝 程序化执行服务器命令

  • 📊 访问和过滤服务器日志、错误和警告

  • 🔗 同时连接多个 Minecraft 服务器

架构

项目由两个主要组件组成:

  1. Python MCP 服务器 (src/smc/) - 实现 Model Context Protocol,为 AI 助手提供标准化接口

  2. Java Minecraft 插件 (plugin/) - 在 Minecraft 服务器中运行,提供 HTTP API 用于服务器管理

目录


安装

前置要求

  • Python: 3.12 或更高版本

  • Minecraft 服务器: Spigot/Paper 1.8.9-1.21.x(不支持 1.17)

  • Java: JDK 8 或更高版本(用于构建插件)

  • Maven: 用于构建 Minecraft 插件

Python MCP 服务器设置

我们推荐使用 uv 进行 Python 依赖管理。

  1. 克隆仓库:

git clone https://github.com/Ver-zhzh/MCP-For-Minecraft-Server.git
cd MCP-For-Minecraft-Server
  1. 安装依赖:

# 使用 uv(推荐)
uv sync

# 或使用 pip
pip install -e .
  1. 验证安装:

# 使用 uv
uv run python -m smc

# 或使用 pip
python -m smc

Minecraft 插件设置

  1. 构建插件:

cd plugin
mvn clean package
  1. 安装插件:

将生成的 JAR 文件复制到 Minecraft 服务器的 plugins 文件夹:

cp target/SMC-Plugin.jar /path/to/your/minecraft/server/plugins/
  1. 配置插件:

在 Minecraft 服务器目录中编辑 plugins/SMC-Plugin/config.yml:

# HTTP API 配置
http:
  port: 8080
  host: "0.0.0.0"

# 安全设置
security:
  api_key: "your-secure-api-key-here"
  
# 日志设置
logging:
  level: INFO
  1. 重启 Minecraft 服务器 以加载插件。


快速开始

1. 启动 Minecraft 服务器

确保您的 Minecraft 服务器正在运行且已安装 SMC 插件。

2. 配置 MCP 服务器

设置环境变量或创建配置文件:

export MINECRAFT_LOG_LEVEL=INFO
export MINECRAFT_LOG_FILE=smc-server.log

3. 运行 MCP 服务器

# 使用 uv
uv run python -m smc

# 或使用 pip
python -m smc

4. 连接到您的 Minecraft 服务器

使用 MCP 客户端连接:

{
  "tool": "connect",
  "arguments": {
    "url": "http://localhost:8080",
    "api_key": "your-secure-api-key-here",
    "timeout": 10
  }
}

5. 查询服务器状态

{
  "tool": "status",
  "arguments": {
    "api_key": "your-secure-api-key-here"
  }
}

配置

环境变量

变量

描述

默认值

MINECRAFT_LOG_LEVEL

日志级别 (DEBUG, INFO, WARNING, ERROR)

ERROR

MINECRAFT_LOG_FILE

日志文件路径

smc-server.log

插件配置

位于 plugins/SMC-Plugin/config.yml:

http:
  port: 8080              # HTTP API 端口
  host: "0.0.0.0"         # 绑定地址

security:
  api_key: "your-key"     # API 认证密钥

logging:
  level: INFO             # 插件日志级别
  max_entries: 1000       # 保留的最大日志条目数

核心功能

连接管理

使用唯一的 API 密钥连接到多个 Minecraft 服务器:

  • connect - 建立到服务器的连接

  • disconnect - 关闭到服务器的连接

  • list_servers - 查看所有活动连接

服务器监控

获取实时服务器信息:

  • status - 服务器版本、在线状态和基本信息

  • plugins - 列出已安装的插件及版本和作者

玩家管理

跟踪和管理玩家:

  • player_list - 获取在线玩家及其 UUID 和延迟信息

日志分析

访问全面的服务器日志:

  • get_logs - 使用基于时间的过滤检索日志

  • get_errors - 按插件过滤错误级别日志

  • get_warnings - 过滤警告级别日志

命令执行

程序化执行服务器命令:

  • send_command - 执行单个或多个命令

  • get_commands - 列出所有可用的服务器命令


可用工具

工具名称

描述

必需参数

connect

连接到 Minecraft 服务器

url, api_key

disconnect

从服务器断开连接

api_key

list_servers

列出所有已连接的服务器

status

获取服务器状态和信息

api_key

plugins

获取已安装插件列表

api_key

send_command

执行服务器命令

api_key, commands

get_logs

检索服务器日志

api_key

player_list

获取在线玩家

api_key

get_errors

获取错误日志

api_key

get_warnings

获取警告日志

api_key

get_commands

列出服务器命令

api_key


开发

运行测试

# Python 测试
uv run pytest

# Java 插件测试
cd plugin
mvn test

项目结构

minecraft-server-mcp/
├── src/smc/                    # Python MCP 服务器
│   ├── __init__.py
│   ├── server.py               # 主 MCP 服务器
│   ├── client.py               # 插件 API 的 HTTP 客户端
│   ├── tools.py                # MCP 工具实现
│   ├── config.py               # 配置管理
│   └── connection_manager.py   # 多服务器连接管理器
├── plugin/                     # Java Minecraft 插件
│   ├── src/main/java/
│   │   └── com/smc/            # 插件源代码
│   ├── src/main/resources/
│   │   └── plugin.yml          # 插件元数据
│   └── pom.xml                 # Maven 配置
├── .python-version             # Python 版本 (3.12)
├── uv.lock                     # 依赖锁定文件
└── README.md                   # 本文件

贡献

欢迎贡献!请遵循以下指南:

  1. Fork 本仓库

  2. 创建功能分支 (git checkout -b feature/amazing-feature)

  3. 提交您的更改 (git commit -m 'Add amazing feature')

  4. 推送到分支 (git push origin feature/amazing-feature)

  5. 打开 Pull Request


许可证

本项目采用 MIT 许可证 - 详情请参见 LICENSE 文件。


🌟 Star History

If you find this project helpful, please consider giving it a star! ⭐

如果您觉得这个项目有帮助,请考虑给它一个星标!⭐

Available Tools

11 tools
connectC

Connect to a Minecraft server using API key as identifier

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesServer API URL (e.g., http://localhost:8080)
api_keyYesAPI key for authentication (also used as unique identifier)
timeoutNoRequest timeout in seconds (default: 10)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations provided, so the description must disclose behavioral traits itself. It only restates the action without mentioning side effects (e.g., whether it establishes a persistent session), authentication flow, error handling, or whether it disrupts an existing connection. This leaves significant behavioral gaps for an agent to navigate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler or repetition. Every word contributes to the core meaning, making it highly concise and structured effectively.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations, no output schema, and a mutating/connecting action, the description should explain expected behavior such as whether the connection is maintained, what happens on timeout, or if it invalidates previous sessions. The current description is too shallow for an agent to fully complete the task reliably in a complex environment.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds a small nuance by calling the API key an 'identifier,' implying a dual role beyond simple authentication, but it does not clarify how parameters relate to each other or what values are valid. This is just enough to justify a baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Connect') and the resource ('a Minecraft server'), using a specific verb that distinguishes it from the sibling 'disconnect' tool. However, the phrase 'using API key as identifier' is slightly ambiguous—it could imply the API key identifies the server or the user, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, when it should be called (e.g., before other commands), or what prerequisites exist. The sibling tools like 'list_servers' and 'disconnect' suggest a workflow, but the description does not mention them or any situational context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

disconnectA

Disconnect from a Minecraft server by API key

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to disconnect

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It only states the action and the required key, but does not disclose what happens on disconnect (e.g., whether it is idempotent, requires an active connection, or has side effects). This is insufficient for a mutating tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler. Every word contributes to the purpose and method.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity, the description is minimally adequate. However, it lacks any context about when to use it (e.g., after a connect) or what the expected behavior is if already disconnected. No output schema or annotations further limit the context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the parameter description 'API key of the server to disconnect' already provides full meaning. The tool description merely repeats 'by API key', adding no extra semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Disconnect' and clearly indicates the resource ('Minecraft server') and the method ('by API key'). It is unambiguous and distinguishes itself from siblings like 'connect' and 'status'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through its verb, but it does not explicitly state when to use this tool versus alternatives such as 'connect' or 'status'. No exclusions or preconditions are mentioned, so it falls at 'implied usage'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_commandsB

Get list of all registered server commands

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to query

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description carries the full burden of disclosing behavior. It only states the purpose and does not mention any behavioral traits such as read-only nature, error conditions, rate limits, or side effects. This is minimal disclosure for a tool that queries a server.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that front-loads the verb and object. It contains no filler or redundant information, making it appropriately concise for a tool with one parameter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one parameter and no output schema. The description adequately explains what the tool does and what resource it queries. However, it does not mention any return format or additional context, and the lack of usage guidelines prevents a perfect score. Overall, it is sufficient for a basic read operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides a full description for the sole required parameter (api_key: 'API key of the server to query'), covering 100% of parameter semantics. The description adds no additional information about how the parameter is used, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get list of all registered server commands' – a specific verb ('get') and resource ('all registered server commands'). This distinguishes it from siblings like send_command (which sends a command) and list_servers (which lists servers).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, such as needing an active connection, or any other contextual cues. The description solely states what it does without saying when or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_errorsA

Get error logs with optional filters

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of entries
pluginNoFilter by plugin name
api_keyYesAPI key of the server to query

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full disclosure burden. It only states the action and doesn't mention read-only nature, authentication beyond the schema's api_key, pagination, or return format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that is front-loaded, with no superfluous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and no annotations, so the description should provide more context on return value or behavior. It is somewhat sufficient for a simple read-only tool, but lacks explicit details on output format or error handling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description mentions 'optional filters' but doesn't add details beyond what the schema already provides for limit, plugin, and api_key.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource as 'error logs' with a specific verb 'Get', distinguishing it from sibling tools like get_logs and get_warnings by focusing on errors.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving error logs but does not provide explicit guidance on when to use this tool over siblings like get_logs or get_warnings, nor any exclusions or prerequisites beyond the api_key parameter.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_logsC

Get server logs with optional filters

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of log entries
api_keyYesAPI key of the server to query
end_timeNoEnd time (ISO 8601 format)
start_timeNoStart time (ISO 8601 format)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclosure behavioral traits. It only says 'Get server logs with optional filters,' which implies a read operation but says nothing about authentication, response format, pagination, default time ranges, or any side effects. This is minimal transparency for a tool requiring an API key.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It is appropriately short, though it arguably sacrifices helpful detail for brevity. It does not over-explain and is easy to parse at a glance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, no output schema, and no annotations, this description is too sparse. It fails to specify what the logs contain, how filters interact, default behavior (e.g., time range, limit), or how this relates to sibling tools like get_errors or get_warnings. More behavioral and contextual detail is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all parameters. The description adds the phrase 'optional filters,' which loosely hints that start_time, end_time, and limit act as filters, but it provides no additional meaning beyond what the schema already states. This matches the baseline for full schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action ('Get') and resource ('server logs'), and mentions 'optional filters' as a general capability. It does not explicitly differentiate from sibling tools like get_errors or get_warnings, which are likely specific log types, but 'server logs' implies a general retrieval scope, so it is distinguishable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as get_errors, get_warnings, or get_commands. It also lacks any mention of prerequisites, typical use cases, or exclusions, leaving the agent to infer usage entirely from the name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_warningsC

Get warning logs with optional filters

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of entries
pluginNoFilter by plugin name
api_keyYesAPI key of the server to query

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden for behavioral disclosure. It only says 'get' without noting that it requires an api_key, whether it is read-only, or any side effects. The lack of detail about authentication or response behavior is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise phrase with no wasted words. It is appropriately front-loaded, though slightly under-specified; however, this is a matter of content, not structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description should explain what the warning logs contain or what response to expect. It does not even mention that api_key is required, leaving the tool's operation under-specified for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (limit, plugin, api_key each have descriptions). The description's phrase 'optional filters' adds no additional meaning beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves warning logs, using a specific verb and resource. It does not explicitly differentiate from sibling tools like get_logs or get_errors, but 'warning' narrows the scope sufficiently.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives such as get_logs or get_errors. The description does not mention any exclusions or specific use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_serversA

List all connected Minecraft servers

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. The verb 'List' implicitly indicates a read-only operation, but the description does not disclose any additional behavioral traits such as return format, authentication requirements, or rate limits. For a simple list operation, this is minimally adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, front-loaded with the action verb, and contains no unnecessary words. It is maximally concise while conveying the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations, no output schema, and a simple list operation, the description provides the basic purpose but does not explain what the returned list contains (e.g., server names, statuses) or any other response details. This is a clear gap, but the tool is simple enough that the description is minimally viable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters and schema coverage is 100% (empty schema). According to the rubric, 0 params yields a baseline of 4. The description adds no parameter details, but none are needed; it reinforces the zero-parameter nature by saying 'all connected'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List all connected Minecraft servers' uses a specific verb ('List') and resource ('all connected Minecraft servers'), clearly distinguishing it from siblings like connect, disconnect, or status. It is explicit about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage (when you need to see connected servers) but provides no explicit guidance on when to use this tool over siblings like 'status' or 'player_list'. There is no mention of alternatives or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

player_listB

Get list of online players

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to query

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden for behavioral disclosure. It only states the action ('Get list of online players') and does not describe response format, authentication requirements beyond the api_key parameter, error handling, or whether the server must be online. This is insufficient for an agent to anticipate outcomes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that is front-loaded with the action and resource. Every word earns its place, and there is no unnecessary verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with one parameter, the description is minimally adequate but lacks important context. There is no output schema and no annotations, so the description should ideally mention what the returned list contains (e.g., player names) and any error conditions. This is a notable gap, though the tool's simplicity mitigates the impact.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage for the single parameter (api_key) with a clear description ('API key of the server to query'). The tool description adds no additional meaning beyond the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Get') and resource ('list of online players'), distinguishing it from sibling tools like list_servers or get_logs. There is no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as status or list_servers. It does not mention context, prerequisites, or situations where another tool would be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pluginsB

Get list of installed Minecraft plugins

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to query

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It only states 'Get list', which implies a read operation, but does not mention prerequisites like an active connection, required permissions, or the nature of the returned data, so behavioral traits remain opaque.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise, front-loaded sentence that directly states the operation. It contains no fluff, but it could be more informative without sacrificing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema and annotations, the description doesn't clarify what the returned list contains (e.g., names only, versions, metadata). It also omits any mention of error conditions or prerequisites beyond the api_key, leaving the agent with insufficient context for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents the single parameter api_key with a clear description ('API key of the server to query'), achieving 100% coverage. The tool description adds nothing beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get list of installed Minecraft plugins' clearly states a specific verb (get) and resource (plugins), distinguishing it from sibling tools like player_list or get_logs. It precisely conveys what the tool does without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention that it queries a specific server via api_key or offers any exclusions, leaving the agent without context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_commandC

Send commands to the Minecraft server

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to send commands to
commandsYesSingle command string or array of command strings

TDQS

C2.7/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It merely restates the action without mentioning side effects, authentication requirements, execution semantics, return values, or potential risks of sending commands.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with no filler or redundancy. It is appropriately front-loaded and every word contributes to stating the tool's purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is minimal and lacks critical context for a command-execution tool: no mention of when to use it, what happens after sending, response format, or risk implications. The good schema coverage does not offset the missing higher-level context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides full 100% coverage for both parameters (api_key and commands) with descriptions, so the baseline is 3. The description itself adds no parameter-specific semantics, but it does not need to compensate given the schema's clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('send') and resource ('commands to the Minecraft server'), clearly indicating the action. It does not explicitly differentiate from sibling tools like get_commands, but the distinct action is implied by the phrasing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives such as connect, status, or get_commands. The description lacks context about prerequisites, use cases, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

statusB

Get Minecraft server status and information

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key of the server to query

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the burden of behavioral disclosure. It only says 'get', implying a read operation, but gives no details on return format, error handling, API key requirements, or any other behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no unnecessary words. It is front-loaded and efficient for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and a minimal description, leaving the return value ambiguous. It is unclear whether 'status and information' means only online/offline state or includes player counts, version, etc. This lack of context makes the description only moderately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single parameter api_key, with a clear description in the schema. The tool description adds no additional meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves Minecraft server status and information, using a specific verb ('Get') and resource ('Minecraft server status'). It is distinct from siblings like player_list or get_logs, which focus on specific aspects.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as list_servers or get_logs. It does not mention any context, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 11 tool updatesv0.1.1
    • First observedconnect
    • First observeddisconnect
    • First observedget_commands
    • First observedget_errors
    • First observedget_logs
    • First observedget_warnings
    • First observedlist_servers
    • First observedplayer_list
    • First observedplugins
    • First observedsend_command
    • First observedstatus

TDQS

B3.2/5.0
Disambiguation3/5

Most tools have distinct purposes, but get_logs with optional filters likely overlaps with get_errors and get_warnings, which appear to be filtered subsets of the logs. This creates potential confusion for an agent deciding which tool to use for log retrieval.

Naming Consistency3/5

Tool names mix verb_noun patterns (list_servers, send_command) with bare nouns (plugins, status) and imperative verbs (connect, disconnect). While the names are readable, the lack of a single consistent convention reduces predictability.

Tool Count5/5

With 11 tools, the server covers the essential operations for Minecraft server management without unnecessary bloat. Each tool serves a recognizable function within the domain, making the count well-scoped.

Completeness4/5

The tool set covers server status, connection handling, commands, logs, and player listings. However, plugin management is limited to listing, with no install/remove/update capabilities, and there is no server configuration tool, leaving minor gaps for advanced administration.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/Ver-zhzh/MCP-For-Minecraft-Server'

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