How MCDoctor.ai Works
MCDoctor uses advanced AI diagnostics to read, interpret, and explain Minecraft server errors, crashes, and plugin conflicts with precision.
Instead of scrolling through thousands of lines in latest.log, MCDoctor extracts the root cause automatically and generates a
clear, structured report you can understand instantly.
Smart Log Processing
MCDoctor automatically cleans your log, removes unnecessary noise, extracts errors, warnings,
crash signatures, plugin issues, and version conflicts — preparing it for deep AI analysis.
AI Deep Understanding
Using a specialized Minecraft-trained AI pipeline, MCDoctor reads the log as if an expert
moderator or server engineer was looking at it — detecting patterns, mod/plugin failures,
misconfigurations, missing dependencies, and more.
Clear Human-Readable Explanations
You receive a clean HTML report: Cause → Fixes → Notes.
No jargon. No guesswork. MCDoctor explains every issue in simple steps you can follow.
Built for Every Minecraft Server
Whether you're running Paper, Purpur, Fabric, Forge, NeoForge, Spigot, or Modpacks,
MCDoctor adapts the analysis to your platform and resolves issues specific to each ecosystem.
Now let’s explore how the upload and analysis sequence actually happens below.
2 analysis mode
Choose how deep you want MCDoctor to investigate your logs
STANDARD
- ✔ Fast processing
- ✔ Basic log cleanup
- ✔ Detection of common crash patterns
- ✔ Simple Cause / Fix explanation
- ✔ Works for most Spigot/Paper servers
Limit: 5 analyses per day
ADVANCED
- ✔ Deep error clustering
- ✔ Plugin & mod dependency scanning
- ✔ Version conflict detection
- ✔ AI interpretation for Paper / Purpur / Fabric / Forge / NeoForge
- ✔ Multi-layer Cause → Fix → Notes
Limit: 1 analysis per day
What Happens Behind the Scenes?
When you upload a log, MCDoctor runs a fast, multi-step diagnostic pipeline.
Here’s a clear breakdown of how your log is processed.
Example of AI Result
This is a realistic MCDoctor Advance Report, using our advanced rendering engine.
Cause
Your server is running several plugins that are not compatible with your current Paper/Minecraft version (1.21.5), or are missing required dependencies. Because of this, some plugins fail to start correctly and then throw a lot of “NullPointerException” errors (which basically means “this thing the plugin expected to exist is actually empty / not loaded”).
- Multiverse suite (Core, Inventories, Portals, NetherPortals)
- Multiverse-Core fails with “VerifyError” and config loading errors. That means the version you’re using is not built for your server version, or its files are broken.
- Because Multiverse-Core never initializes, the other Multiverse plugins (Inventories, Portals, NetherPortals) also fail and throw errors like:
- “MultiverseCore has not been initialized!”
- “Cannot invoke ... InventoriesDupingPatch.disable() because this.dupingPatch is null”
- PhoenixDuels
- PhoenixDuels crashes on startup with “ExceptionInInitializerError”.
- After that, its internal helpers are never set up, so you see:
- “ServerVersion.CURRENT_VERSION is null”
- “Utilities.ASYNC_SERVICE is null”
These are just the plugin trying to use things that never got initialized because it failed to start.
- Database / stats plugin (ResultSet is null)
- Repeated errors like “Cannot invoke ResultSet.next() because resultSet is null” mean a plugin that talks to a database (MySQL/SQLite) is failing to get data.
- Most likely:
- Database connection is not set up correctly (wrong host, user, password, or database name), or
- The plugin is not handling failed queries properly.
- Other plugin issues
- BanAnnouncer cannot load because it is missing the required plugin “Spicord”.
- Essentials says you are on an unsupported server version, so that version of Essentials is not meant for 1.21.5.
- ItemsAdder is missing a bunch of images for “betterranks” (admin.png, mod.png, etc.), so those custom rank icons won’t show up.
- Some plugins log “VerifyError: Bad type on operand stack” – this is another strong sign they are compiled for a different Minecraft/Java version than what you are running.
Fixes
- Update or remove incompatible plugins
- Check each of these plugins and make sure you are using a version that explicitly supports Paper / Minecraft 1.21.5:
- Multiverse-Core, Multiverse-Inventories, Multiverse-Portals, Multiverse-NetherPortals
- PhoenixDuels
- Essentials (or switch to EssentialsX with a version that supports 1.21.5)
- If there is no 1.21.5-compatible version of a plugin, you have two options:
- Temporarily remove that plugin from the
plugins folder, or
- Downgrade your server to a Minecraft version that the plugin officially supports.
- Fix Multiverse specifically
- Download the latest Multiverse plugins that support your server version from their official pages.
- Delete or move aside old Multiverse config files if they are very old or corrupted:
- Stop the server.
- Backup the
plugins/Multiverse-* folders.
- Optionally remove the configs (so they regenerate) if you suspect they are broken.
- Start the server and let new configs generate, then reconfigure worlds/portals as needed.
- Fix PhoenixDuels errors
- Get a PhoenixDuels version that supports your exact Minecraft/Paper version.
- If none exists yet:
- Remove PhoenixDuels from the
plugins folder, or
- Use a different duels plugin that is updated for 1.21.5.
- Fix database / ResultSet null errors
- Identify which plugin is logging “ResultSet.next() because resultSet is null” (look just above those lines in the full log for the plugin name).
- Then:
- Open that plugin’s config file (usually in
plugins/PluginName/config.yml).
- Check the database settings:
- Host (IP / domain)
- Port
- Database name
- Username and password
- Make sure the database actually exists and the user has permission to access it.
- Restart the server after fixing the config.
- Install missing dependencies
- For BanAnnouncer:
- Download and install Spicord (the dependency it complains about).
- Make sure you use versions of BanAnnouncer and Spicord that support 1.21.5.
- Fix ItemsAdder missing images
- Go to your ItemsAdder pack folder (usually
plugins/ItemsAdder/data/resource_pack/assets/betterranks/textures/).
- Add or restore the missing PNG files:
- admin.png, mod.png, helper.png, player.png, builder.png, youtube.png, patreon.png, patreon2.png, java.png, skript.png, developer.png, dev.png, vip.png, vipplus.png
- Run ItemsAdder’s command to rebuild the resource pack (check its documentation, usually something like
/iazip or similar).
- General cleanup steps
- After making changes:
- Stop the server completely.
- Remove any obviously broken or outdated jars from
plugins.
- Start the server and watch the console for new errors.
- Fix errors one plugin at a time so you can clearly see what changed.
Notes
- Most of these errors are not caused by your world or your server hardware, but by plugin versions not matching your Minecraft/Paper version or missing dependencies.
- If you are unsure which plugin is causing a specific error, you can temporarily:
- Move all plugins out of the
plugins folder,
- Add them back one by one, restarting each time,
- And see when the error returns. That tells you exactly which plugin is responsible.
- Always back up your world and plugin folders before removing or changing plugins, especially big ones like Multiverse or ItemsAdder.