Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
CommandAPI

CommandAPI

An API to use the command UI introduced in Minecraft 1.13

28.2k
79
Library
Utility
AboutGalleryChangelogVersions

CommandAPI 11.0.0 (Paper)

by JorelAli on Oct 4, 2025
Download

CommandAPI 11.0.0 (Spigot)

by JorelAli on Oct 4, 2025
Download

CommandAPI 11.0.0 (Velocity)

by JorelAli on Oct 4, 2025
Download

Minecraft Version Changes

  • Adds support for Minecraft 1.21.9 and 1.21.10
  • Drops support for Minecraft 1.20.5 and below on Paper

Bug Fixes

  • #631 Fixes unregistered commands reappearing after a minecraft:reload. This comes with some other notable changes around command registrations and unregistrations. You can read about these on the command unregistration page in the documentation.
  • #608 The RecipeArgument no longer throws any exceptions on Spigot
  • #494, #503 Fixes the ConcurrentModificationException from happening when registering/unregistering commands at runtime

Module Changes

  • #414, #517 Splits up the CommandAPI into modules specific for Paper and Spigot:
  • Removes the commandapi-bukkit-shade module and the commandapi-bukkit-shade-mojang-mapped module
  • Adds the commandapi-paper-core and the commandapi-paper-shade modules which are made to work on Paper
  • Adds the commandapi-spigot-core and the commandapi-spigot-shade modules which are made to work on Spigot
  • Adds the commandapi-paper-test-toolkit and the commandapi-spigot-test-toolkit which are replacing commandapi-bukkit-test-toolkit for Paper and Spigot respectively
  • Moves and adds a few Kotlin DSL modules:
    • commandapi-core-kotlin -> commandapi-kotlin-core
    • commandapi-bukkit-kotlin -> commandapi-kotlin-bukkit
    • commandapi-velocity-kotlin -> commandapi-kotlin-velocity
    • Newly added: commandapi-kotlin-paper
    • Newly added: commandapi-kotlin-spigot

New features

  • On Paper it is now possible to register commands at bootstrap

API Changes

  • Changes the CommandAPIBukkitConfig class into an abstract one in favour of the newly added CommandAPIPaperConfig or CommandAPISpigotConfig classes, depending on the modules you use
  • The FloatRangeArgument has been renamed to DoubleRangeArgument and now returns a DoubleRange
  • The PlayerArgument and OfflinePlayerArgument have been replaced by the PlayerProfileArgument which returns a List<PlayerProfile>. The PlayerProfile class changes depending on if you are on Paper or on Spigot. Use the EntitySelectorArgument.OnePlayer if you want a Player object.
  • The AsyncOfflinePlayerArgument has been replaced by the AsyncPlayerProfileArgument
  • The ChatArgument, ChatComponentArgument and ChatColorArgument do no longer have any Adventure prefixes and return different types depending on the platform.
  • The ChatArgument returns a SignedMessage object on Paper. Also resolves #381
  • The BlockStateArgument now returns a BlockState object instead of a BlockData object

Config Changes

  • Replaces the use-latest-nms-version and be-lenient-for-minor-versions config options with a fallback-to-latest-nms config option:
    • When loading the CommandAPI and this config option is set to true it will first check if the current version is supported and chooses that
    • In case the current version isn't a supported version, the CommandAPI will choose the latest nms version available which might or might not work correctly
    • This config option is set to true by default on Paper and false on Spigot

CommandAPI 10.1.2 (Mojang-Mapped)

by JorelAli on Jul 21, 2025
Download

CommandAPI 10.1.2 (Spigot-Mapped)

by JorelAli on Jul 21, 2025
Download

Minecraft version changes

  • Adds support for Minecraft 1.21.8

CommandAPI 10.1.1 (Mojang-Mapped)

by JorelAli on Jul 2, 2025
Download

CommandAPI 10.1.1 (Spigot-Mapped)

by JorelAli on Jul 2, 2025
Download

Minecraft version changes

  • Adds support for Minecraft 1.21.7

CommandAPI 10.1.0 (Mojang-Mapped)

by JorelAli on Jun 23, 2025
Download

CommandAPI 10.1.0 (Spigot-Mapped)

by JorelAli on Jun 23, 2025
Download

CommandAPI 10.1.0 (Velocity)

by JorelAli on Jun 23, 2025
Download

Minecraft version changes

  • Adds support for Minecraft 1.21.6

CommandAPI 10.0.1 (Networking Plugin)

by JorelAli on May 6, 2025
Download

CommandAPI 10.0.1 (Velocity)

by JorelAli on May 6, 2025
Download

CommandAPI 10.0.1 (Mojang-Mapped)

by JorelAli on May 6, 2025
Download

CommandAPI 10.0.1 (Spigot-Mapped)

by JorelAli on May 6, 2025
Download

Bug fixes

  • Fixes command unregistration not working on Paper
  • #645 Ignore requirements for null senders

CommandAPI 10.0.0 (Networking Plugin)

by JorelAli on Apr 1, 2025
Download

CommandAPI 10.0.0 (Velocity)

by JorelAli on Apr 1, 2025
Download

CommandAPI 10.0.0 (Mojang-Mapped)

by JorelAli on Apr 1, 2025
Download

CommandAPI 10.0.0 (Spigot-Mapped)

by JorelAli on Apr 1, 2025
Download

Minecraft Version Changes

  • Adds support for Minecraft 1.21.5
  • Drops support for Minecraft 1.16.5 - 1.19.4

Java Version Changes

  • Changes CommandAPI from Java 16 to Java 17 (LTS)

New features

  • #633 Adds an AsyncOfflinePlayerArgument to allow asynchronous fetching of an offline player

Bug fixes

  • #477 Fixed NativeProxyCommandSender not being able to run Vanilla (and CommandAPI) commands
  • #578, #583, #629 Fixes Bukkit#dispatchCommand() not working after Paper's Brigadier API changes
  • Fixes PotionEffectArgument.NamespacedKey not having suggestions in some versions

New changes

  • #636 The default namespace has been updated from minecraft to the plugin's name. If you are not shading, the default namespace is going to be commandapi. If you are shading, the default namespace is going to be your plugin's name.
  • Updates the config defaults for the datapack reloading step to be opt-in instead of opt-out.
  • The CommandAPI will now tell you if you've messed up mappings (in addition to spewing messy errors)
  • #634 Functions that use Component have now been changed to use ComponentLike
  • Added support for Velocity!

Website Changes

  • The CommandAPI's new homepage is https://commandapi.dev/ (currently points to the documentation)
  • Documentation has moved over to https://docs.commandapi.dev/
  • JavaDocs have moved over to https://javadocs.commandapi.dev/
  • The CommandAPI has moved from github.com/JorelAli/CommandAPI to its own organization over at github.com/CommandAPI/CommandAPI

CommandAPI 9.7.0 (Mojang-Mapped)

by JorelAli on Dec 4, 2024
Download

CommandAPI 9.7.0 (Spigot-Mapped)

by JorelAli on Dec 4, 2024
Download

Minecraft version changes

  • Adds support for Minecraft 1.21.4

New features

  • #575 Adds a NMS independent test toolkit to allow developers to test their commands with MockBukkit
  • #613 Adds a thenNested method for CommandTrees to reduce nesting in code
1
2
3

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+
Filter

Show all versions

Modrinth is open source.

main@656c5b6

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.