MCP.so
登录

dockerized-mcpaper-server

@LeoMainini

关于 dockerized-mcpaper-server

暂无概览

基本信息

分类

其他

运行时

shell

传输方式

stdio

发布者

LeoMainini

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "dockerized-mcpaper-server": {
      "command": "docker",
      "args": [
        "compose",
        "up",
        "--build"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is dockerized-mcpaper-server?

dockerized-mcpaper-server automates creating a Minecraft server using a simple, reproducible, and transportable Docker container. It is configured around the PaperMC server software and intended for users who want an isolated, containerized Minecraft server.

How to use dockerized-mcpaper-server?

Set OUT_PORT, SERVER_JAR_URL, and DEDICATED_RAM in docker-compose.yml, then run docker compose up -d from the base folder. Attach to the server console with docker attach <container_name>, detach with CTRL+P+Q, and stop with docker compose down.

Key features of dockerized-mcpaper-server

  • Full PaperMC server inside a Docker container
  • Only three required inputs: port, JAR URL, RAM
  • Persistent data stored in ./volumes/server
  • Easy console attach and detach via Docker
  • Supports custom volume mounts for extra persistence
  • Simple rebuild with docker compose up --build

Use cases of dockerized-mcpaper-server

  • Quickly spin up a PaperMC Minecraft server without manual setup
  • Reproducible server deployment across different machines
  • Isolated server environment with persistent world data
  • Easy server management using Docker Compose commands

FAQ from dockerized-mcpaper-server

What are the required environment variables?

OUT_PORT (the server port), SERVER_JAR_URL (download URL for the PaperMC jar), and DEDICATED_RAM (memory allocation for the server).

How do I start the server?

Set the three required variables in docker-compose.yml, then run docker compose up -d from the base folder.

How do I attach to the server console?

Run docker attach <container_name>. To detach without stopping the server, press CTRL+P+Q inside the terminal window.

How do I persist additional folders?

Add a bind mount entry in the volumes section of docker-compose.yml, specifying the host source path and the container target path (e.g., for world backups).

How do I rebuild the image after Dockerfile changes?

Run docker compose up --build. Persistent data will not be deleted when rebuilding; you must manually delete the persisted folders to remove them.

评论

其他 分类下的更多 MCP 服务器