Skip to main content

nodetool-mlx

CI

High-performance MLX-native nodes for Nodetool on Apple Silicon. This package wraps the community MLX implementations of Whisper, Kokoro/Sesame TTS, MFlux FLUX.1 image generation, and Stability AI's Stable Audio 3 so you can run state-of-the-art audio and vision workflows locally on macOS.

Why nodetool-mlx?

  • Local-first – keep data on-device by running speech, TTS, and image models without cloud calls
  • Optimised for Apple Silicon – uses MLX kernels and quantized checkpoints to achieve strong throughput on M-series chips
  • Drop-in nodes – integrates seamlessly with the Nodetool graph editor and nodetool-core runtime

Provided Nodes

All nodes live under src/nodetool/nodes/mlx. Audio nodes wrap the mlx-audio library.

Text-to-Speech (mlx.text_to_speech)

  • KokoroTTS – fast multilingual TTS with 54 voice presets
  • SesameTTS – CSM voice cloning from a reference clip
  • SparkTTS – controllable speed / pitch / gender presets
  • Qwen3TTS – multilingual TTS with speaker voices and voice design
  • KittenTTS – compact, edge-friendly English voices
  • DiaTTS – dialogue TTS with [S1] / [S2] speaker tags
  • OuteTTS – efficient multilingual TTS with optional cloning
  • OmniVoiceTTS – zero-shot multilingual (646+ languages)
  • MeloTTS – lightweight VITS2 English accents
  • VoxtralTTS – Mistral's multilingual TTS with voice presets
  • ChatterboxTTS – expressive TTS with exaggeration control and cloning
  • HiggsAudioTTS – conversational TTS with zero-shot cloning
  • LongCatAudioTTS – diffusion TTS with zero-shot cloning
  • MLXTextToSpeech – generic node that runs any mlx-audio TTS repo id

Speech-to-Text (mlx.automatic_speech_recognition, mlx.speech_to_text)

  • Whisper – MLX Whisper transcription with optional word timestamps
  • Parakeet – NVIDIA Parakeet high-accuracy multilingual ASR
  • Qwen3ASR – Alibaba's multilingual ASR with long-form chunking
  • Qwen3ForcedAligner – word-level timestamp alignment for a known transcript
  • MLXSpeechToText – generic node that runs any mlx-audio STT repo id

Speech Enhancement (mlx.speech_enhancement)

  • DeepFilterNet – real-time noise suppression (v1/v2/v3) at 48 kHz
  • MossFormer2 – high-quality 48 kHz speech enhancement

Image (mlx.text_to_image, mlx.image_to_image)

  • MFlux and the MFlux* family – FLUX.1 / Qwen-Image / Z-Image / FIBO generation and editing via the MFlux project (supports quantized models)

Image-to-Text (mlx.image_to_text)

  • MLXVisionLanguage – image captioning, visual Q&A, and OCR via MLX vision-language models (Qwen3-VL, Gemma 4)

Text-to-Audio (mlx.text_to_audio)

  • StableAudio3 – text-to-audio music & sound effects with Stable Audio 3 (44.1 kHz stereo)
  • StableAudio3AudioToAudio – prompt-guided variations of an input clip
  • StableAudio3Inpaint – regenerate a time range inside an audio clip

Text-to-Music (mlx.text_to_music)

  • ACEStepMusicGeneration – local text-to-music generation with ACE-Step 1.5 (prompt + lyrics → full songs)
  • ACEStepSongPlanner – use the ACE-Step 5Hz language model to turn an idea into a caption, lyrics and musical metadata

Text (mlx.text_generation)

  • TextGeneration – local LLM text generation via mlx-lm

Stable Audio 3

The Stable Audio 3 nodes run Stability AI's optimized MLX implementation (no PyTorch at runtime), vendored under nodetool.mlx.stable_audio_3 (MIT licensed — see that folder's LICENSE and NOTICE.md). Three DiT variants are available via the model field:

  • sm-music (50M) – fast music generation
  • sm-sfx (50M) – sound effects
  • medium (1.4B) – higher-fidelity music

Weights are pulled on demand from the Hugging Face repo stabilityai/stable-audio-3-optimized (only the MLX/* files) and cached locally; you can also pre-download them from the Models Manager.

ACE-Step 1.5 (music generation)

The ACE-Step nodes wrap the official ACE-Step 1.5 project, which uses MLX for the diffusion transformer, VAE and language model on Apple Silicon. ACE-Step 1.5 is not distributed on PyPI (the ace-step package there is the older 1.0 release), so it must be installed separately:

git clone https://github.com/ace-step/ACE-Step-1.5.git
cd ACE-Step-1.5
uv sync   # installs the macOS/MLX dependencies

Install it into the same environment as nodetool-mlx. If the package is missing, the nodes raise a clear error pointing back to the repository.

Checkpoints are downloaded automatically from HuggingFace on first use into ~/.cache/nodetool/acestep/checkpoints (override with the ACESTEP_CHECKPOINTS_DIR environment variable). The main bundle ACE-Step/Ace-Step1.5 includes the VAE, the turbo DiT and the 1.7B planner LM; additional DiT and LM checkpoints are listed as recommended models on each node.

Requirements

  • macOS 14+ on Apple Silicon (MLX currently supports Apple hardware only)
  • Python 3.11
  • nodetool-core v0.6.0+
  • Required MLX checkpoints managed via the Nodetool Models Manager (see Managing Models)

Installation

From the Nodetool UI

  1. Open Nodetool → Tools ▸ Packages
  2. Install the nodetool-mlx pack from the package registry
  3. Nodetool will handle dependencies and expose the MLX nodes in the graph editor once installed

From source (development)

git clone https://github.com/nodetool-ai/nodetool-mlx.git
cd nodetool-mlx
uv pip install -e .
uv pip install -r requirements-dev.txt

If you prefer Poetry or pip, install the project the same way—just ensure dependencies are resolved against Python 3.11.

Managing Models

All MLX nodes rely on locally cached checkpoints. The recommended way to download and update them is through the Models Manager built into Nodetool:

  1. Open Nodetool → Menu ▸ Models
  2. Select the mlx tab to view the recommended checkpoints for each node
  3. Click Download for the models you plan to use; Nodetool stores them in the Hugging Face cache automatically
  4. The UI will keep track of model availability and prompt you when updates are available

Advanced users can still seed the Hugging Face cache manually, but using the UI integration ensures consistent paths and avoids missing-model errors in workflows.

Usage

  1. Install nodetool-core and this package in the same environment
  2. Run nodetool-pkg scan --write --enrich to generate package metadata
  3. Build workflows in the Nodetool UI using the mlx nodes

Development

Run tests and lint checks before submitting PRs:

pytest -q
ruff check .
black --check .

Most of the suite is written to run on any platform: the MLX runtimes are imported lazily and the node logic is exercised against mocks. The handful of tests that need mflux or mlx-audio skip themselves when those Apple Silicon packages are unavailable, so a Linux run reports skips rather than failures.

If you change a node's get_recommended_models(), regenerate the committed package metadata:

nodetool-pkg scan --write --enrich

tests/test_package_metadata.py fails when the two drift apart — the Nodetool UI reads that file to populate the model picker, so a stale entry becomes a model users cannot select or a download offer for a repository that no longer exists.

Continuous integration

.github/workflows/ci.yml runs on every pull request:

Job Runner What it covers
Lint and format ubuntu ruff check . and black --check .
Test (linux) ubuntu, Python 3.11 + 3.12 the platform-independent suite, installed with --no-deps
Test (macOS) macos-14 (Apple Silicon) the full suite against the real MLX stack
Build wheel ubuntu python -m build plus twine check

Please open issues or pull requests for bug fixes, new MLX models, or performance improvements. Contributions are welcome!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nodetool_mlx-0.7.0.tar.gz (133.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nodetool_mlx-0.7.0-py3-none-any.whl (147.5 kB view details)

Uploaded Python 3

File details

Details for the file nodetool_mlx-0.7.0.tar.gz.

File metadata

  • Download URL: nodetool_mlx-0.7.0.tar.gz
  • Upload date:
  • Size: 133.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nodetool_mlx-0.7.0.tar.gz
Algorithm Hash digest
SHA256 ef500b2b8ed7ec90cda6f1f33c1815293a602cbb023cceca4946cb2e86c98353
MD5 26afbcaa1328593a696b7bda33f40e6d
BLAKE2b-256 5d52aeeca1ee4381d0e60c1e9fe73811ca0a87a971b581fce6b8b283c3ff00a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nodetool_mlx-0.7.0.tar.gz:

Publisher: publish-wheel.yml on nodetool-ai/nodetool-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nodetool_mlx-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: nodetool_mlx-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 147.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nodetool_mlx-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 66db8288eeba2e62b3f58fec9a21c6d21bbccf95208be37472899cd34c062d51
MD5 dd51e27a04ef350708b7fc060cde835b
BLAKE2b-256 ffc254658338e188eaf8dfbea44765aad65c04f073fd3ac9f3eef6a5bc784e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nodetool_mlx-0.7.0-py3-none-any.whl:

Publisher: publish-wheel.yml on nodetool-ai/nodetool-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.7.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page