npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kud/mcp-qobuz

v1.0.1

Published

MCP server for Qobuz — search, browse, and explore your music library via AI.

Downloads

277

Readme

TypeScript Node.js npm MIT

MCP server for Qobuz — search, browse, and explore your music library via AI.

Website · Documentation

Features

  • AI-native Qobuz access — exposes Qobuz to any MCP client (Claude Desktop, Claude Code) as tools.
  • Search & lookup — search albums, artists, and tracks; fetch full details for any track, album, artist, or playlist by ID.
  • Browse your library — list your favourited tracks, albums, and artists, and all your playlists.
  • Now playing — read the current track from the Qobuz desktop app (macOS only — the server must run on the same Mac).
  • Flexible auth — Keychain locally, or QOBUZ_TOKEN / QOBUZ_APP_ID env vars for headless and remote MCP hosts.
  • Guarded writes — create playlists, add tracks, and update descriptions, gated behind an explicit confirm flag.

Install

npm install -g @kud/mcp-qobuz

Usage

Add the server to your .mcp.json:

{
  "mcpServers": {
    "mcp-qobuz": { "command": "npx", "args": ["-y", "@kud/mcp-qobuz"] }
  }
}

Auth — local macOS (Keychain)

Credentials are read automatically from the macOS Keychain using the same "qobuz"/"default" entry written by qobuz-cli. Log in once with qobuz login and this server picks them up — no extra configuration needed.

Auth — headless / remote (env vars)

For CI, remote MCP hosts, or any non-Mac environment, pass credentials via the env block in .mcp.json:

{
  "mcpServers": {
    "mcp-qobuz": {
      "command": "npx",
      "args": ["-y", "@kud/mcp-qobuz"],
      "env": {
        "QOBUZ_TOKEN": "your-token",
        "QOBUZ_APP_ID": "your-app-id"
      }
    }
  }
}

Env vars take precedence over the Keychain when both are present.

Note: the now-playing tool is macOS-only — it reads the player state file written by the Qobuz desktop app. It will return an error on any other platform.

Tools

| Tool | Description | | ----------------------------- | ---------------------------------------------------------- | | search | Search Qobuz for albums, artists, and/or tracks | | get-track | Fetch full track details by ID | | get-album | Fetch full album details by ID | | get-artist | Fetch artist biography and discography by ID | | get-playlist | Fetch a playlist and its tracks by ID | | list-playlists | List your Qobuz playlists | | list-favourites | List your favourited tracks, albums, or artists | | now-playing | Show what the Qobuz desktop app is playing (macOS only) | | create-playlist | Create a new playlist — requires confirm: true | | add-to-playlist | Add tracks to a playlist — requires confirm: true | | update-playlist-description | Update a playlist's description — requires confirm: true |

Development

git clone https://github.com/kud/mcp-qobuz.git
cd mcp-qobuz
npm install
npm run dev

| Command | Description | | --------------------- | --------------------------------------------- | | npm run dev | Run the server with tsx (no build step) | | npm run build | Compile TypeScript to dist/ | | npm test | Run the Vitest test suite | | npm run inspect:dev | Open the MCP Inspector against the dev server |

📚 Full documentation → mcp-qobuz/docs