mcp-qobuz copilot-instructions.md

mcp-qobuz copilot-instructions.md is an instructions file for GitHub Copilot from kud/mcp-qobuz. It costs 1,416 tokens per session, scanned A, original, MIT.

A contributor guide for an MCP server that gives AI assistants access to Qobuz, a music-streaming service. It documents the project structure, authentication, validation rules, and testing approach.

In plain words
What is it for?
Implementing or reviewing Qobuz tools such as playlist creation, playlist updates, and adding tracks, then testing them with Vitest.
Why use it?
It helps developers change the server without breaking its shared rules, especially around authentication and actions that modify playlists.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/kud/mcp-qobuz/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/kud/mcp-qobuz

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-qobuz copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kud/mcp-qobuz/copilot-instructions.svg)](https://agentmods.dev/instructions/kud/mcp-qobuz/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/kud/mcp-qobuz/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/kud/mcp-qobuz/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,416 This file is loaded in full into every session.
When invoked 1,416 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01416 $0.01416
Opus 5 $0.00708 $0.00708
Sonnet 5 $0.00283 $0.00283
Haiku 4.5 $0.00142 $0.00142

Measured 4d ago against content hash f7c55dd8926d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

mcp-qobuz copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Copilot Instructions — mcp-qobuz

Project context

@kud/mcp-qobuz is a TypeScript MCP server that exposes the Qobuz music service to AI assistants via the Model Context Protocol. It is one of four surfaces in the @kud/qobuz ecosystem; all share the @kud/qobuz core client library.

Stack:

  • Runtime: Node.js >=20, ESM-only ("type": "module", NodeNext resolution)
  • MCP layer: @modelcontextprotocol/sdk — tools registered with server.registerTool()
  • Input validation: Zod v4 schemas passed directly to registerTool inputSchema
  • Core client: @kud/qobuz (auth, API transport, types, deep-link helpers)
  • Auth: macOS Keychain (createKeychainStore) or env vars (QOBUZ_TOKEN + QOBUZ_APP_ID)
  • Tests: Vitest — unit tests mock @kud/qobuz via vi.fn(), export makeHandlers for testability
  • Build: tscdist/, strict mode, no bundler

Key architectural invariants:

  • All tool handlers live inside makeHandlers(client) and return ok(data) or err(message) — never throw out of a handler.
  • Write tools (create-playlist, add-to-playlist, update-playlist-description) require confirm: true to execute; they return an err() message otherwise.
  • now-playing is macOS-only and reads a local Qobuz desktop app state file; it must return a graceful err() on any other platform or when the file is absent.
  • console.error is the correct logging channel (stdout is the MCP stdio transport).
  • The convert-link tool is intentionally absent pending extraction of a shared @kud/song-match package. Do not copy the resolve logic into this repo.

Content rules

Flag these patterns:

  1. Uncaught throws in tool handlers — every handler must catch its own errors and return err(msg). A throw propagating out of a handler crashes the MCP connection rather than returning a structured error to the client.

  2. console.log in server code — only console.error is safe; console.log writes to stdout which is the MCP stdio transport and will corrupt the protocol stream.

Read the full file on GitHub · 133 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 133 lines · 1,416 tokens per session scan A f7c55dd8926d

Subscribe to this mod's changes

mcp-qobuz copilot-instructions.md is an instructions file published in the GitHub repository kud/mcp-qobuz (0 stars, last pushed 24d ago), licensed MIT. It adds 1,416 tokens to every session, about $0.0071 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.