Minecraft Server MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Minecraft Server MCPhow many players are online?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Minecraft Server MCP
🎮 AI-Powered Minecraft Server Management via Model Context Protocol
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:
Python MCP Server (
src/smc/) - Implements the Model Context Protocol, providing a standardized interface for AI assistantsJava 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.
Clone the repository:
git clone https://github.com/Ver-zhzh/MCP-For-Minecraft-Server.git
cd MCP-For-Minecraft-ServerInstall dependencies:
# Using uv (recommended)
uv sync
# Or using pip
pip install -e .Verify installation:
# Using uv
uv run python -m smc
# Or using pip
python -m smcMinecraft Plugin Setup
Build the plugin:
cd plugin
mvn clean packageInstall 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/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: INFORestart 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.log3. Run the MCP Server
# Using uv
uv run python -m smc
# Or using pip
python -m smc4. 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 |
| Logging level (DEBUG, INFO, WARNING, ERROR) |
|
| Path to log file |
|
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 keepCore Features
Connection Management
Connect to multiple Minecraft servers using unique API keys:
connect- Establish connection to a serverdisconnect- Close connection to a serverlist_servers- View all active connections
Server Monitoring
Get real-time server information:
status- Server version, online status, and basic infoplugins- 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 filteringget_errors- Filter error-level logs by pluginget_warnings- Filter warning-level logs
Command Execution
Execute server commands programmatically:
send_command- Execute single or multiple commandsget_commands- List all available server commands
Available Tools
Tool Name | Description | Required Parameters |
| Connect to a Minecraft server |
|
| Disconnect from a server |
|
| List all connected servers | None |
| Get server status and information |
|
| Get installed plugins list |
|
| Execute server commands |
|
| Retrieve server logs |
|
| Get online players |
|
| Get error logs |
|
| Get warning logs |
|
| List server commands |
|
Development
Running Tests
# Python tests
uv run pytest
# Java plugin tests
cd plugin
mvn testProject 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 fileContributing
Contributions are welcome! Please follow these guidelines:
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)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概述
Minecraft Server MCP 是一个 Model Context Protocol (MCP) 服务器实现,使 AI 助手能够通过标准化接口与 Minecraft 服务器进行交互和管理。该项目将 AI 能力与 Minecraft 服务器管理相结合,轻松实现:
🎮 实时监控服务器状态和性能
👥 管理玩家并查询在线状态
🔌 查看和管理已安装的插件
📝 程序化执行服务器命令
📊 访问和过滤服务器日志、错误和警告
🔗 同时连接多个 Minecraft 服务器
架构
项目由两个主要组件组成:
Python MCP 服务器 (
src/smc/) - 实现 Model Context Protocol,为 AI 助手提供标准化接口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 依赖管理。
克隆仓库:
git clone https://github.com/Ver-zhzh/MCP-For-Minecraft-Server.git
cd MCP-For-Minecraft-Server安装依赖:
# 使用 uv(推荐)
uv sync
# 或使用 pip
pip install -e .验证安装:
# 使用 uv
uv run python -m smc
# 或使用 pip
python -m smcMinecraft 插件设置
构建插件:
cd plugin
mvn clean package安装插件:
将生成的 JAR 文件复制到 Minecraft 服务器的 plugins 文件夹:
cp target/SMC-Plugin.jar /path/to/your/minecraft/server/plugins/配置插件:
在 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重启 Minecraft 服务器 以加载插件。
快速开始
1. 启动 Minecraft 服务器
确保您的 Minecraft 服务器正在运行且已安装 SMC 插件。
2. 配置 MCP 服务器
设置环境变量或创建配置文件:
export MINECRAFT_LOG_LEVEL=INFO
export MINECRAFT_LOG_FILE=smc-server.log3. 运行 MCP 服务器
# 使用 uv
uv run python -m smc
# 或使用 pip
python -m smc4. 连接到您的 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"
}
}配置
环境变量
变量 | 描述 | 默认值 |
| 日志级别 (DEBUG, INFO, WARNING, ERROR) |
|
| 日志文件路径 |
|
插件配置
位于 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- 列出所有可用的服务器命令
可用工具
工具名称 | 描述 | 必需参数 |
| 连接到 Minecraft 服务器 |
|
| 从服务器断开连接 |
|
| 列出所有已连接的服务器 | 无 |
| 获取服务器状态和信息 |
|
| 获取已安装插件列表 |
|
| 执行服务器命令 |
|
| 检索服务器日志 |
|
| 获取在线玩家 |
|
| 获取错误日志 |
|
| 获取警告日志 |
|
| 列出服务器命令 |
|
开发
运行测试
# 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 # 本文件贡献
欢迎贡献!请遵循以下指南:
Fork 本仓库
创建功能分支 (
git checkout -b feature/amazing-feature)提交您的更改 (
git commit -m 'Add amazing feature')推送到分支 (
git push origin feature/amazing-feature)打开 Pull Request
许可证
本项目采用 MIT 许可证 - 详情请参见 LICENSE 文件。
🌟 Star History
If you find this project helpful, please consider giving it a star! ⭐
如果您觉得这个项目有帮助,请考虑给它一个星标!⭐
Available Tools
11 toolsconnectC
Connect to a Minecraft server using API key as identifier
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Server API URL (e.g., http://localhost:8080) | |
| api_key | Yes | API key for authentication (also used as unique identifier) | |
| timeout | No | Request timeout in seconds (default: 10) |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to disconnect |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of entries | |
| plugin | No | Filter by plugin name | |
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of log entries | |
| api_key | Yes | API key of the server to query | |
| end_time | No | End time (ISO 8601 format) | |
| start_time | No | Start time (ISO 8601 format) |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of entries | |
| plugin | No | Filter by plugin name | |
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to send commands to | |
| commands | Yes | Single command string or array of command strings |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key of the server to query |
TDQS
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.
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.
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.
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.
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.
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.
11 tool updates
v0.1.1- First observed
connect - First observed
disconnect - First observed
get_commands - First observed
get_errors - First observed
get_logs - First observed
get_warnings - First observed
list_servers - First observed
player_list - First observed
plugins - First observed
send_command - First observed
status
TDQS
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.
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.
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.
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
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
One AI endpoint to search and call 22k+ MCP servers; 50+ hosted tools work instantly, no key.
31Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
MCP server for AI dialogue using various LLM models via AceDataCloud
Related MCP Servers
- AlicenseCqualityDmaintenanceAllows AI assistants to connect to and control Minecraft players on remote servers, enabling navigation, building, mining, inventory management, entity interaction, and chat communication through natural language commands.272413MIT
- AlicenseNot gradedqualityDmaintenanceEnables management of Minecraft servers through the MCSManager API. Supports executing server commands, checking player status, retrieving server information, and controlling game settings like weather.241MIT
- FlicenseNot gradedqualityDmaintenanceEnables control of a Minecraft server through RCON commands via natural language, including game commands, chat-based AI interactions, and server management capabilities.6-
- FlicenseNot gradedqualityDmaintenanceEnables natural language management of Minecraft Bedrock Edition servers through AI assistants. Supports server lifecycle operations, player/world management, backups, add-ons, and automated tasks via the Bedrock Server Manager API.1-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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