Configure AudioDN audio hosting from your AI agent: uploads, playback, variants, plus grounded docs.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
@audiodn/mcpModel Context Protocol server for AudioDN.
Exposes the AudioDN REST API as MCP tools so AI agents (Cursor, Claude Desktop, Claude Code, VS Code, Codex, etc.) can configure audio hosting on a user's behalf, plus offline, read-only knowledge tools grounded in the canonical AudioDN OpenAPI spec and documentation so agents look up the correct endpoints instead of guessing.
One-click install (hosted endpoint, zero setup β knowledge/doc tools work immediately):
To enable the live API tools, set ADN_API_KEY (an adn_... key from the
dashboard) in your environment before launching Cursor; the hosted endpoint
picks it up from the Authorization header. Prefer a local stdio server? Use
this button instead:
Both correspond to the mcp.json shipped with this plugin. See
Cursor's MCP docs for manual setup.
Set a server-side AudioDN API key (mint one in the dashboard at https://account.audiodeliverynetwork.com under Settings β API Keys).
| Variable | Required | Default | Purpose |
|---|---|---|---|
ADN_API_KEY | Yes | β | Server-side, full-access API key used for all live-API tools. |
ADN_API_BASE_URL | No | https://api.audiodelivery.net | Override the API host. |
ADN_MCP_ALLOW_DELETE | No | off | Set to 1 to expose the destructive adn_delete_* tools. |
ADN_MCP_LIVE_DOCS | No | off | Set to 1 to refresh bundled docs from the public site (falls back to the bundle offline). |
ADN_MCP_TIMEOUT_MS | No | 30000 | Per-request timeout in milliseconds. |
adn_delete_creator, adn_delete_collection) are
hidden and refuse to run unless the server is started with
ADN_MCP_ALLOW_DELETE=1. Set it once to opt in.Besides the local npx stdio server above, AudioDN runs the same tool set as a
hosted Streamable HTTP endpoint on Cloudflare Workers, so clients that
support remote MCP servers can connect without installing anything.
https://mcp.audiodelivery.net/mcp β the MCP endpoint. The root
/ serves a human landing page in a browser (and JSON for tooling), and
/health returns machine-readable server info.Example client configuration (clients that support a remote/HTTP MCP URL):
The hosted Worker lives in worker/ and is deployed with Wrangler
(npm run deploy); it is not part of the published npm package.
Settings β Tools & Integrations β MCP (or edit ~/.cursor/mcp.json):
Edit ~/Library/Application Support/Claude/claude_desktop_config.json
(or the equivalent on your OS), then restart the app:
Any client that speaks MCP over stdio uses the same command. For VS Code, add to
.vscode/mcp.json:
For Codex CLI (~/.codex/config.toml):
| Tool | Description |
|---|---|
adn_about | Server version, bundled OpenAPI version, docs source, API base. |
adn_search_docs | Keyword search over bundled docs + OpenAPI summaries. |
adn_list_operations | List all REST operations (operationId, method, path). |
adn_get_operation | Full OpenAPI definition for one operationId. |
adn_get_guide | Canonical guide (authentication, upload, processing, playback, webhooks, variant-types, security, compatibility). |
adn_list_variant_types | The seven variant types and which are API-creatable. |
| Tool | Description | Annotation |
|---|---|---|
adn_list_creators / adn_get_creator | Read creators | read-only |
adn_create_creator / adn_update_creator | Create/update creator | write |
adn_delete_creator | Delete creator | destructive (gated) |
adn_list_collections / adn_get_collection | Read collections | read-only |
adn_create_collection / adn_update_collection | Create/update collection | write |
adn_delete_collection | Delete collection + its tracks | destructive (gated) |
adn_list_tracks / adn_get_track | Read tracks; adn_get_track polls readiness | read-only |
adn_create_upload_session / adn_get_upload_session | Manage upload sessions | write / read-only |
adn_create_track_in_upload_session | Register a track, get track_upload.upload_url | write |
adn_create_play_session / adn_get_play_session | Mint/read play sessions (scope: collection, track) | write / read-only |
adn_list_variants | List org delivery variants | read-only |
The server also exposes canonical docs as MCP resources for clients that attach
context directly: audiodn://openapi.json, audiodn://llms-full.txt, and
audiodn://guide/{topic} for each guide.
An agent helping a user host a podcast might call:
adn_get_guide({ topic: "upload" }) β learn the canonical multi-step flow.adn_create_collection({ title: "My Podcast" })adn_create_upload_session({ collection_id })adn_create_track_in_upload_session({ upload_session_id, file_name: "ep1.mp3" })PUTs the audio bytes to track_upload.upload_url.adn_get_track({ track_id }) until track_status_id === "ready".adn_create_play_session({ scope: "track", track_id }) β returns a signed
playback URL that can be embedded directly.The Cloudflare Worker in worker/ serves the same tools over Streamable HTTP.
The custom domain mcp.audiodelivery.net is provisioned by Cloudflare from the
routes entry in wrangler.toml (the audiodelivery.net zone must be on the
same Cloudflare account).
To list on the official MCP registry (registry name net.audiodelivery/mcp,
which must match mcpName in package.json): verify the domain once with
mcp-publisher login dns --domain audiodelivery.net (add the printed TXT
record), confirm remotes[0].url in server.json points at the deployed URL,
then mcp-publisher publish.
Bundled snapshots live in assets/snapshots/. Refresh them from the public site
with npm run sync; prepublishOnly verifies they are consistent before a
release.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/audiodn)<a href="https://allmcps.com/mcp/audiodn"><img src="https://allmcps.com/api/badge/audiodn?style=directory" alt="AudioDN on AllMCPs" /></a>