minecraft-modpack-server

Configures and launches modded Minecraft servers from NeoForge/Forge server pack archives.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill minecraft-modpack-server-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: minecraft-modpack-server
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/gaming/minecraft-modpack-server
Command: npx skills add https://github.com/yakeworld/Synthos --skill minecraft-modpack-server-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up a modded Minecraft server from a server pack zip involves many error-prone steps: matching Java versions to the Minecraft release, installing the NeoForge/Forge loader, tuning JVM memory for hundreds of mods, pairing authentication flags correctly, and avoiding pitfalls like flight kicks and tick timeouts. This Skill walks through the entire setup with validated decisions and sensible defaults. ## Core Features & Use Cases - End-to-End Server Setup: Downloads and unpacks the server pack, installs the correct Java version (8/17/21), runs the loader installer, accepts the EULA, and generates server.properties. - Performance & JVM Tuning: Allocates RAM by mod count (6-12GB for 100-200 mods, 12-24GB for 200-350+ mods) with G1GC flags, scales view/simulation distance to player count, and reserves at least 8GB for the OS. - Safety Rules & Backups: Enforces allow-flight=true and max-tick-time=180000 for modded servers, pairs online-mode with enforce-secure-profile, opens firewall port 25565, and sets up hourly cron backups capped at 24 archives. - Use Case: A user provides an ATM10 pack URL for 4 players on a 32GB host; the Skill installs OpenJDK 21, configures server.properties, writes a standalone launch script, and verifies startup via the "Done" log line. ## Quick Start Set up a modded Minecraft server from this server pack zip URL for 4 players with hourly backups.

Frequently Asked Questions about minecraft-modpack-server

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a modded Minecraft server from a server pack zip?

Download and unzip the pack, install the Java version matching the Minecraft release, run the pack's installer with an install-only flag, accept the EULA, then configure server.properties and JVM args. Finish by opening port 25565 and creating a standalone launch script.

Which Java version does my Minecraft server need?

Minecraft 1.21 and newer requires Java 21, versions 1.18 through 1.20 require Java 17, and 1.16 or older requires Java 8. Install the matching openjdk headless package and verify with java -version before starting the server.

How much RAM should I allocate to a modded Minecraft server?

Allocate 6-12GB for packs with 100-200 mods and 12-24GB for 200-350+ mods, using G1GC flags in user_jvm_args.txt. Always leave at least 8GB free for the operating system, and reduce view-distance if memory is tight.

Why do players get kicked for flying on a modded server?

Mods with jetpacks or flying mounts trigger the vanilla flight check, kicking players. Set allow-flight=true in server.properties, which is required for essentially all modded servers.

Why are clients rejected when online-mode is false?

When online-mode=false for LAN or non-premium play, enforce-secure-profile must also be set to false. If the two flags are mismatched, clients are rejected during the connection handshake.

How do I automate backups of a Minecraft world?

Create a script that tars the world folder into a timestamped archive and prunes old copies beyond a cap such as 24. Register it as an hourly cron job and log output to a backup log file.