
Modrinth · Minecraft mod
MiniPlaceholders
MiniMessage Component-based Placeholders API for Minecraft Platforms
Quick answer
Which MiniPlaceholders release should I use?
MiniPlaceholders 3.2.0 targets 26.1 with Fabric, Quilt. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is MiniPlaceholders required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does MiniPlaceholders 3.2.0 need?
3.2.0. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add MiniPlaceholders without breaking your instance.
Built for MiniPlaceholders 3.2.0. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 3.2.0. It targets 26.1 with Fabric, Quilt; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside 3.2.0. It opens that exact file at the source.
About this project
What does MiniPlaceholders add?
MiniPlaceholders
MiniMessage Component-based Placeholders API for Minecraft Platforms
Compatibility
- Paper 1.21+
- Velocity 3.4.0+
- Fabric 1.21.4+
- Sponge API 12+
User Usage
Check our user usage wiki
API
Check the available Javadocs
Or check the Developer Wiki
Java
class Main {
public static void registerExpansion() {
final Expansion expansion = Expansion.builder("my-expansion")
.audiencePlaceholder(Player.class, "name", (player, ctx, queue) -> {
return Tag.selfClosingInserting(player.getName());
})
.globalPlaceholder("tps", (ctx, queue) ->
Tag.selfClosingInserting(Component.text(Bukkit.getTps()[0]))
).build;
expansion.register();
Player player;
final TagResolver playerResolver = MiniPlaceholders.audiencePlaceholders();
player.sendMessage(miniMessage().deserialize("Player Name: <my-expansion_name>", player, playerResolver));
}
}
Kotlin
fun register() {
val expansion = expansion("my-expansion") {
audience<Player>("name") { aud, _, _ -> aud.getName().asClosingTag() }
global("tps") { _, _ -> Component.text(Bukkit.getTps()[0]).asInsertingTag() }
}
expansion.register()
val player: Player
val playerResolver = MiniPlaceholders.audiencePlaceholders()
player.sendMessage(miniMessage().deserialize("Player Name: <my-expansion_name>", player, playerResolver))
}
Project description from Modrinth.
Pick your setup
MiniPlaceholders by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
23w33a
2 loader builds23w32a
2 loader builds23w31a
2 loader builds23w18a
2 loader builds23w17a
2 loader builds1.21.11
3 loader builds1.21.10
3 loader builds1.21.9
3 loader builds1.21.8
3 loader builds1.21.7
3 loader builds1.21.6
3 loader buildsShowing the newest 12 of 94 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
MiniPlaceholders versions and loaders
3.2.0
MiniPlaceholders-Fabric-3.2.0.jar
27 Mar 2026
3.2.0
MiniPlaceholders-Paper-3.2.0.jar
27 Mar 2026
3.2.0
MiniPlaceholders-Sponge-3.2.0.jar
27 Mar 2026
3.2.0
MiniPlaceholders-Velocity-3.2.0.jar
27 Mar 2026
3.1.1-BETA2
MiniPlaceholders-Fabric-3.1.1-SNAPSHOT.jar
14 Mar 2026
3.1.1-BETA1
MiniPlaceholders-Fabric-3.1.1-SNAPSHOT.jar
10 Oct 2025
3.1.0
MiniPlaceholders-Fabric-3.1.0.jar
10 Oct 2025
3.1.0
MiniPlaceholders-Paper-3.1.0.jar
10 Oct 2025
3.1.0
MiniPlaceholders-Sponge-3.1.0.jar
10 Oct 2025
3.1.0
MiniPlaceholders-Velocity-3.1.0.jar
10 Oct 2025
3.0.1
MiniPlaceholders-Fabric-3.0.1.jar
23 Aug 2025
3.0.1
MiniPlaceholders-Paper-3.0.1.jar
23 Aug 2025
Looking for an older file? The official Modrinth project page is in Resources.