Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. https://music-assistant.io
  • Python 96.4%
  • JavaScript 1.4%
  • HTML 1.2%
  • CSS 0.9%
Find a file
2026-07-24 22:19:16 +02:00
.claude/skills/review-pr Update review instructions. 2026-06-01 10:14:36 +02:00
.github Bump docker/login-action from 4.5.0 to 4.5.1 (#4976) 2026-07-24 21:30:38 +02:00
.vscode Gitignore launch.json 2026-07-03 09:16:24 +02:00
music_assistant Show clearer errors for invalid media files (#4978) 2026-07-24 22:19:16 +02:00
scripts Restore provider method ordering (#4948) 2026-07-24 02:50:00 +02:00
tests Show clearer errors for invalid media files (#4978) 2026-07-24 22:19:16 +02:00
.gitattributes Make pre-commit configuration cross-platform compatible using uv (#2971) 2026-01-15 09:03:13 +01:00
.gitignore Move base image to Debian trixie (#4933) 2026-07-23 23:30:04 +02:00
.pre-commit-config.yaml Remote access: migrate WebRTC backend to libdatachannel (aiolibdatachannel) (#4930) 2026-07-23 20:16:59 +02:00
.python-version Bump Python to 3.14 (#3702) 2026-04-15 12:40:05 +02:00
AGENTS.md Document provider_mappings database structure (#4466) 2026-06-29 10:55:01 +02:00
CLAUDE.md Update review instructions. 2026-06-01 10:14:36 +02:00
codecov.yml Run only affected providers' tests on PRs (HA-style), with Codecov (#4335) 2026-06-19 11:04:32 +02:00
DEVELOPMENT.md Bump Python to 3.14 (#3702) 2026-04-15 12:40:05 +02:00
devenv.lock Add devenv Configuration for Consistent Developer Environments (#3641) 2026-04-14 21:24:18 +02:00
devenv.nix Bump Python to 3.14 (#3702) 2026-04-15 12:40:05 +02:00
devenv.yaml Add devenv Configuration for Consistent Developer Environments (#3641) 2026-04-14 21:24:18 +02:00
Dockerfile Update airplay-cli to v0.3.3 (#4964) 2026-07-24 13:20:16 +02:00
Dockerfile.base Move base image to Debian trixie (#4933) 2026-07-23 23:30:04 +02:00
LICENSE Initial commit 2019-05-09 08:17:03 +02:00
MANIFEST.in Fetch AirPlay binaries during image builds (#4881) 2026-07-21 22:11:28 +02:00
NOTICE Add vocal activity detection to Smart Fades (#4786) 2026-07-15 10:03:36 +02:00
pyproject.toml Make CI tests faster and more reliable (#4975) 2026-07-24 21:30:09 +02:00
README.md Add CodSpeed performance benchmarks and CI integration (#4656) 2026-07-08 11:56:41 +02:00
requirements_all.txt ⬆️ Update music-assistant-frontend to 2.17.235 (#4974) 2026-07-24 16:56:49 +00:00
setup.cfg Add base for client implementation (#666) 2023-05-17 21:43:11 +02:00

Music Assistant

Music Assistant Server

CodSpeed

Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike.

Documentation and support

Documentation https://music-assistant.io

Beta Documentation https://beta.music-assistant.io

For issues, please go to the issue tracker.

For feature requests, please see feature requests.


Running the server

Music Assistant can be operated as a complete standalone product but it is actually tailored to use side by side with Home Assistant, it is meant with automation in mind, hence our recommended installation method is to run the server as a Home Assistant app.

Supported installation methods

The only officially supported ways to run the Music Assistant server are:

Both bundle every system dependency the server needs. Although Music Assistant's main code is Python, it depends on external/OS components — a recent ffmpeg (6.1+) with a specific codec set, native libraries (e.g. jemalloc and CIFS/NFS client libraries) and a few bundled binaries — which a plain PyPI/pip install can't provide. The server is therefore not published to PyPI; run it via the app or container above.

Running from source (development)

For local development you provide the system dependencies yourself — Python 3.14+ and ffmpeg 6.1+ are required.

  • scripts/setup.sh — create the virtualenv and install dependencies and pre-commit hooks
  • python -m music_assistant --log-level debug — run the server locally (listens on http://localhost:8095)
  • pytest runs the tests; pre-commit run --all-files runs the linters

A project from the Open Home Foundation