Compatibility
Minecraft: Java Edition
1.21.4–1.21.6
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed LGPL-2.1-or-later
Published 3 months ago
Updated 15 hours ago

Provides you with capes!
You can choose from various providers or add your own.
Improved/Reworked version of the "Capes" mod:
- Improved and easier cape provider integration
- Allows ordering providers
- Support for custom providers
- More options to fine tune how capes are applied
- Written only in Java (no Kotlin needed)
- Various fixes and improvements

Creating a custom cape provider
This demo showcases how to apply the capes inside custom-cape-demo
.
-
Open the config file located in
config/cape-provider.json5
-
In the
customProviders
section add the following entry:{ "id": "cp1", "name": "CustomProvider1", // You can replace uuid with $id, $name or $idNoHyphen to customize the cape per Player "uriTemplate": "https://raw.githubusercontent.com/litetex-oss/mcm-cape-provider/refs/heads/dev/custom-cape-demo/uuid.png" }
Example for SkinMC
{ "id": "skinmc", "name": "SkinMC", "uriTemplate": "https://skinmc.net/api/v1/skinmcCape/$id" }
-
Restart the game and activate the provider
For more details have a look at CustomProvider and CustomProviderConfig
You can also create a programmatic cape provider.