nxp-monkey versions

design / cli / versions

Purpose

List MCUXpresso Config Tools API versions known to NXP's KEX npidb endpoint. This is the discovery entry point: users rarely need an explicit version, but they may want to inspect what NXP currently publishes.

Usage

nxp-monkey versions [--latest] [--include-unpublished] [--refresh]

Arguments

FlagEffect
--latestPrint only the highest published version and exit.
--include-unpublishedInclude rows with an empty version field.
--refreshBypass the 24h local cache and re-fetch from NXP.

Output

Default output is a tab-separated table on stdout with columns name, api_id, version, stable. With --latest, prints exactly one line containing the version name (for example 25.12.10).

--json mode

With the global --json flag, versions writes versions.json to the working directory (rows + the resolved latest) and prints that path on stdout instead of the table.

Library equivalent

nxp_monkey.list_versions(refresh=False)
nxp_monkey.latest_version()

Tests

Related