Stack Manager (Fabric/NeoForge)

Quick rating

Stack Manager (Fabric/NeoForge)

No reviews yet

Generate config with all the items (vanilla + mods) and allow to change max stack.

Storage & Organization
Mod Loaders
NeoForge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
Stack Manager v1.0.1-1.21.11 NeoForge.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Stack Manager — configurable stack sizes (vanilla + mods)

A lightweight server-side mod that generates a config with all items (vanilla + modded) and lets you set the max stack size per item. Works in singleplayer (integrated server) and on dedicated servers.


Features

  • Generates config/stackmanager_items.json with every registered item.
  • Per-item stack limits you can edit at any time.
  • Auto-adds new items from newly installed mods on startup/reload.
  • Safe network cap = 99 to avoid protocol/NBT issues.
  • Optional in-game commands (enabled when Fabric API is present).

Commands (optional, require Fabric API)

/stackmanager reload — reload the config and append any missing items.
/stackmanager set <id> <value> — set a new limit (clamped to 99).
/stackmanager set <id> default — restore the game/mod default (clamped to 99).

Without Fabric API the mod still works; edit the file and restart (or reload using your preferred method).


Config file

Path: config/stackmanager_items.json

{
  "formatVersion": 1,
  "items": {
    "minecraft:acacia_button": 64,
    "minecraft:oak_planks": 99
  }
}
  • Keys are full item IDs (namespace:item).
  • Values are clamped to 1–99 at load time.

Handy editor shortcuts for stackmanager_items.json

(VS Code / most editors; Windows/Linux = Ctrl, macOS = Cmd unless noted)

  • Format document (auto-indent JSON):
    Shift+Alt+F (Win/Linux) · Shift+Option+F (macOS)
  • Find / Replace:
    Ctrl+F / Ctrl+H · Cmd+F / Cmd+Alt+F
  • Select next occurrence (multi-cursor):
    Ctrl+D · Cmd+D
  • Go to line:
    Ctrl+G · Cmd+G
  • Select word / line:
    Ctrl+W (word) / Ctrl+L (line) · Option+Shift+→/← or Cmd+L (macOS)

Tips

  • Keep IDs alphabetized for easier diffs.
  • Use regex replace in Ctrl+H to mass-edit values.
  • After editing, run /stackmanager reload (if commands available) or restart the world/server to apply changes.

Compatibility & limits

  • The mod enforces limits on the server; clients don’t need the mod (unless other mods require it).
  • Items with different NBT (custom names, enchantments, damage, etc.) never stack, by vanilla rules.
  • Most vanilla and modded GUIs respect these limits. If a specific mod screen still caps at 64/99, report it—small per-screen patches are possible.
  • Values above 99 are intentionally reduced to 99 to keep networking stable.

Requirements

Fabric API: optional but recommended for better experience (enables /stackmanager commands and smoother reloading).


Recommended usage

  • Install Fabric API (recommended, not required) to use in-game commands and improve quality of life.
  • Edit values directly in the config file before starting a world/server. Command-based changes—especially without Fabric API—can be cumbersome and may require restarts or extra steps.

Ideas for using the mod (easier vs. harder gameplay)

Potions

  • Easier: set potions to 16 or 32 per slot
  • minecraft:potion: 16
  • minecraft:splash_potion: 16
  • minecraft:lingering_potion: 8–16

Benefit: fewer inventory trips during raids, mining, and boss fights.

Note: Potions carry NBT (effect type). Only identical potions stack.

Other quick ideas

  • Builder / mega-projects (QoL):
    Blocks (stone, planks, glass, terracotta) 99; food 64–99; firework_rocket 64–99.
  • Exploration / Elytra:
    Rockets 16 (harder) or 64–99 (easier); Ender Pearls 16–32 (easier) or 8 (harder).
  • Combat / PvE:
    arrow 99; snowballs/eggs 64–99 for events/minigames.
  • Economy / survival challenge:
    Ores/ingots 16; ore blocks 8; pearls/snowballs 8 to curb spam

FAQ

How do I find an item ID?
Enable advanced tooltips with F3 + H, then hover the item: you’ll see namespace:item.

Can I set 9999?
No. For network safety the effective cap is 99.

Singleplayer or server?
Both. In singleplayer, drop the mod into mods/. On a dedicated server, only the server needs the mod.

Contact: https://github.com/Neni-o/issue-tracker

Stack Manager

Configurable stack sizes (vanilla + mods)

A lightweight server-side mod that generates a config with all items (vanilla + modded) and lets you set the max stack size per item. Works in singleplayer (integrated server) and on dedicated servers.

Features

  • Generates config/stackmanager_items.json with every registered item.
  • Per-item stack limits you can edit at any time.
  • Auto-adds new items from newly installed mods on startup/reload.
  • Safe network cap = 99 to avoid protocol/NBT issues.
  • Optional in-game commands (enabled when Fabric API is present).

Commands

(optional, require Fabric API) /stackmanager reload — reload the config and append any missing items.

/stackmanager set — set a new limit (clamped to 99).

/stackmanager set default — restore the game/mod default (clamped to 99).

Without Fabric API the mod still works; edit the file and restart (or reload using your preferred method).

Config file

Path: config/stackmanager_items.json

{
  "formatVersion": 1,
  "items": {
    "minecraft:acacia_button": 64,
    "minecraft:oak_planks": 99
  }
}
  • Keys are full item IDs (namespace:item).
  • Values are clamped to 1–99 at load time.

Handy editor shortcuts

(VS Code / most editors; Windows/Linux = Ctrl, macOS = Cmd unless noted)

Format document:

Shift+Alt+F (Win/Linux) · Shift+Option+F (macOS)

  • Find / Replace: Ctrl+F / Ctrl+H · Cmd+F / Cmd+Alt+F -Select next occurrence (multi-cursor): Ctrl+D · Cmd+D
  • Go to line: Ctrl+G · Cmd+G
  • Select word / line: Ctrl+W (word) / Ctrl+L (line) · Option+Shift+→/← or Cmd+L (macOS)

Tips

  • Keep IDs alphabetized for easier diffs.
  • Use regex replace in Ctrl+H to mass-edit values.
  • After editing, run /stackmanager reload (if commands available) or restart the world/server to apply changes.

Compatibility & limits

  • The mod enforces limits on the server; clients don’t need the mod (unless other mods require it).
  • Items with different NBT (custom names, enchantments, damage, etc.) never stack, by vanilla rules.
  • Most vanilla and modded GUIs respect these limits. If a specific mod screen still caps at 64/99, report it—small per-screen patches are possible.
  • Values above 99 are intentionally reduced to 99 to keep networking stable.

Requirements

Fabric API: optional but recommended for better experience (enables /stackmanager commands and smoother reloading).

Recommended usage

  • Install Fabric API (recommended, not required) to use in-game commands and improve quality of life.
  • Edit values directly in the config file before starting a world/server. Command-based changes—especially without Fabric API—can be cumbersome and may require restarts or extra steps.

Ideas for using the mod

  • Potions: Easier: set potions to 16 or 32 per slot
minecraft:potion: 16
minecraft:splash_potion: 16
minecraft:lingering_potion: 8–16

Benefit: fewer inventory trips during raids, mining, and boss fights.

Note: Potions carry NBT (effect type). Only identical potions stack.

Other quick ideas

  • Builder / mega-projects (QoL):
  • Blocks (stone, planks, glass, terracotta) 99; food 64–99; firework_rocket 64–99.
  • Exploration / Elytra: Rockets 16 (harder) or 64–99 (easier); Ender Pearls 16–32 (easier) or 8 (harder).
  • Combat / PvE: arrow 99; snowballs/eggs 64–99 for events/minigames.
  • Economy / survival challenge: Ores/ingots 16; ore blocks 8; pearls/snowballs 8 to curb spam

FAQ

  • How do I find an item ID?

Enable advanced tooltips with F3 + H, then hover the item: you’ll see namespace:item.

  • Can I set 9999?

No. For network safety the effective cap is 99.

  • Singleplayer or server?

Both. In singleplayer, drop the mod into mods/. On a dedicated server, only the server needs the mod.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~7,000
Total Downloads
CurseForge
~3,000
Modrinth
~4,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works