Links
Tags
Creators
Details
All versions
26.1.2-0.1
Release
CourierAPI 26.1.2-0.13 months ago 61
Compatibility
Minecraft: Java Edition
26.1.2
Platform
Fabric
Supported environments
Client-side
Client and server
Changes
Updated to 26.1.2
0.1 — Initial Release
Added
- Animated HUD notification cards with slide-in / slide-out transitions
- Up to 4 simultaneous notifications; extras queue automatically
- Fully customizable colors — title, description, background, and border accent (ARGB)
- Configurable display duration per notification
- Description wraps to a second line when text is too long
- Server-side API —
CourierAPI.send()andCourierAPI.broadcast()to send notifications to players - Client-side API —
CourierClientAPI.showLocal()for client-only mods and singleplayer couriernotifications.json— define reusable named notifications in the server rootcouriernotifications_queue.json— trigger notifications externally (scripts, RCON, panels) without touching Java code/courier send <id>— broadcast a named notification to all online players (op level 2)/courier reload— reloadcouriernotifications.jsonfrom disk without restarting the server- Tab-completion for notification IDs in
/courier send
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:JNFl3QKb:WTvoFR9X"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:JNFl3QKb:WTvoFR9X"
}

