Skip to content

MNX Marketplace

MNX is a Minecraft Bedrock addon marketplace built on the MCX ecosystem. It allows developers to publish, distribute, and manage their addons through a centralized registry.

Overview

  • Public Registry — browse and download community addons at pmnx.qzz.io
  • Version Management — semantic versioning with release channels (e.g. latest, beta)
  • Scope-based Publishing — organized under user/team namespaces (@scope/name)
  • Token Authentication — secure API access for automated publishing via CI/CD

Publishing Workflow

  1. Build your addon with mbler build
  2. Login to your MNX account: mbler login <token>
  3. Publish: mbler publish -tag latest
  4. Manage versions through the MNX web interface or CLI

Installing Packages

Users can install published addons directly:

bash
mbler install @scope/name@version

If no version is specified, the latest is used. The addon is downloaded and extracted into the Minecraft game directory.

To remove an installed addon:

bash
mbler uninstall @scope/name@version

CLI Commands

CommandDescription
mbler login <token>Authenticate with MNX
mbler publishPublish your addon
mbler unpublish @scope/name@versionRemove a published version
mbler view @scope/nameList available versions
mbler install @scope/name@versionInstall to game directory
mbler uninstall @scope/name@versionRemove from game directory
mbler profileShow logged-in user info
mbler config get tokenView current auth token