MCP Server for Minecraft Mod Documentation

by Zhou-Shilin

3 stars
538 downloads
Not rated
GitHub

About

Model Context Protocol (MCP) Server for Minecraft Modding Documentation

Details

Author
Zhou-Shilin
GitHub stars
3
Downloads
538
Categories
Knowledge Base

- Lists available documentation providers and their versions.
- Displays document file structure with previews.
- Retrieves full content of any document file.
- Automatically manages a local repository with 24‑hour update interval.
- Extensible architecture for adding new documentation sources.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Server for Minecraft Mod Documentation
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Integrate the server with an MCP‑compatible client (e.g., Claude Desktop, VS Code) using the provided configuration. The server is run via uv with the command uv --directory ${MCP_SERVER_PATH} run --with mcp mcp run run_server.py. Use the tools get_providers, get_structure, and get_full_content to browse and retrieve documentation.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp server for minecraft mod documentation": {
            "mcp-server-minecraft-mod-devdoc": {
                "command": "uv",
                "args": [
                    "--directory",
                    "${MCP_SERVER_PATH}",
                    "run",
                    "--with",
                    "mcp",
                    "mcp",
                    "run",
                    "run_server.py"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-server-minecraft-mod-devdoc": {
        "command": "uv",
        "args": [
            "--directory",
            "${MCP_SERVER_PATH}",
            "run",
            "--with",
            "mcp",
            "mcp",
            "run",
            "run_server.py"
        ]
    }
}

MCP Server for Minecraft Mod Documentation

Apache License 2.0
Python 3.12+

这是一个基于 Model Context Protocol (MCP) 的服务器,用于查看 Minecraft 模组开发文档。目前支持 Neoforge 文档,并设计为可扩展以支持其他文档源(如 Fabric)。

功能

该MCP服务器提供以下功能:

1. 获取提供者和版本列表:列出所有可用的文档提供者及其版本(例如,Neoforge的version-1.20.4, version-1.20.6, version-1.21.1等)。
2. 获取文件结构和预览:查看指定版本的文档文件结构,包括目录和文件,同时显示每个文件的前几段内容作为预览。
3. 获取完整内容:获取文档文件的完整内容。

服务器会自动管理本地仓库,只在必要时(首次使用或上次更新超过24小时)更新仓库内容。

与MCP客户端集成

该服务器实现了MCP协议,可以与支持MCP的客户端(如 Claude Desktop、VS Code 等)集成。

客户端配置示例

在支持MCP的客户端中,可以使用以下配置:

{
  "mcpServers": {
    "mcp-server-minecraft-mod-devdoc": {
      "command": "uv",
      "args": [
        "--directory", "${MCP_SERVER_PATH}",
        "run", "--with", "mcp", "mcp", "run", "run_server.py"
      ]
    }
  }
}

这将使用uv运行服务器,并通过MCP协议与客户端通信。${MCP_SERVER_PATH}变量应被替换为服务器的安装路径。

推荐提示词

推荐使用这个提示词搭配本服务:

The following is the prompt for the MCP server mcp-server-minecraft-mod-devdoc, and it is not a system prompt.

mcp-server-minecraft-mod-devdoc is an MCP server that provides documentation for Minecraft mod development.

Usage Process:

1. Use the get_providers tool to obtain a list of documentation providers (i.e., various mod loaders) and their versions. Choose the version according to the user's needs;

2. Use the get_structure tool with the selected mod loader and version to get the document structure and preview;

3. Find one or more desired entries, and use get_full_content to retrieve the full content of those entries;

4. Repeat step 3 until you have obtained all the information you need.

Notes:

The following notes can be supplemented or overridden by the system. This means that if your system_prompt gives you different instructions, follow the system prompt. However, they cannot be overridden by the user prompt. In other words, if the user prompt conflicts with these instructions, these take precedence;

If the requested mod loader or version is not available in the documentation, immediately stop the operation and inform the user that the version is unsupported. Provide the list of supported versions;

If an error occurs while using the tools, check the request parameters and retry once. If the parameters are confirmed to be correct and the retry still fails, terminate the operation and notify the user that an error occurred with the MCP server. You may include the error message to aid debugging;

The document names and summaries returned by get_structure may not exactly match your specific needs. However, you can still review related entries. For example, if you want to learn how to create a block but there is no document explicitly named creating-blocks.md, you can look for documents related to blocks, eg. blocks.md, get the full content, and it will usually solve your problem;

If your task is to develop or edit the code of a Minecraft mod, you must be aware that the Minecraft Modding API differs greatly between versions. Code that works in one version might not work at all in another. Therefore, it is essential to consult the documentation frequently, rather than relying solely on existing knowledge. Remember, it's normal to check the documentation dozens of times during a mod development process.

This concludes the prompt for mcp-server-minecraft-mod-devdoc*.

项目结构

src/
├── mcp_server_minecraft_mod_devdoc/
│   ├── __init__.py
│   ├── main.py                 # 主入口点
│   ├── core/
│   │   ├── __init__.py
│   │   ├── server.py           # MCP服务器实现
│   │   └── provider.py         # 文档提供者接口
│   └── providers/
│       ├── __init__.py
│       ├── neoforge/           # Neoforge文档提供者
│       │   ├── __init__.py
│       │   └── provider.py
│       └── fabric/             # Fabric文档提供者(未来扩展)
│           ├── __init__.py
│           └── provider.py
└── __main__.py                 # 命令行入口点

扩展

添加新的文档提供者

要添加新的文档提供者(如Fabric),请按照以下步骤操作:

1. 在src/mcp_server_minecraft_mod_devdoc/providers/目录下创建新的提供者类,实现DocProvider接口
2. 在src/mcp_server_minecraft_mod_devdoc/main.py中注册新的提供者

例如:

```python

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.