Audius
About
Integrates with Audius music platform API, enabling user searches, track streaming, and playlist management for music discovery and artist analytics.
Details
- Author
- glassbead-tc
- Repository
- glassBead-tc/audius-mcp-atris
- Categories
- Other, API, Media, AI, Design, Developer Tools, Search, Frontend, Infrastructure
- Tags
- #analytics, #data-science
Jump to
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
AudiusCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/path/to/audius-mcp-atris/dist/index.js
Environment-
AUDIUS_API_KEY
your_key_here
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
echo 'AUDIUS_API_KEY=your_key_here' > .env
| Variable | Required | Description |
|----------|----------|-------------|
| AUDIUS_API_KEY | Yes | API key from audius.co/settings |
| PORT | No | HTTP server port (default: 3000) |
| GRAPH_API_KEY | No | The Graph API key for subgraph queries |
search
Discover API endpoints by tag, path, method, or keyword.
execute
Run JavaScript against the Audius API in a QuickJS sandbox.
play
Open a track in the Audius desktop app or browser.
subgraph
Query on-chain protocol data (staking, governance, nodes) via The Graph.
| Tool | What it does |
|------|-------------|
| search | Discover API endpoints by tag, path, method, or keyword |
| execute | Run JavaScript against the Audius API in a QuickJS sandbox |
| play | Open a track in the Audius desktop app or browser |
| subgraph | Query on-chain protocol data (staking, governance, nodes) via The Graph |
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"audius": {
"env": {
"AUDIUS_API_KEY": "your_key_here"
},
"args": [
"/path/to/audius-mcp-atris/dist/index.js"
],
"command": "node"
}
}
}
Linux
{
"env": {
"AUDIUS_API_KEY": "your_key_here"
},
"args": [
"/path/to/audius-mcp-atris/dist/index.js"
],
"command": "node"
}
Macos
{
"env": {
"AUDIUS_API_KEY": "your_key_here"
},
"args": [
"/path/to/audius-mcp-atris/dist/index.js"
],
"command": "node"
}
Windows
{
"env": {
"AUDIUS_API_KEY": "your_key_here"
},
"args": [
"/c",
"node",
"/path/to/audius-mcp-atris/dist/index.js"
],
"command": "cmd"
}
Audius MCP Server (Code Mode)
A Code Mode MCP server that gives LLMs full access to the Audius music platform and Open Audio Protocol. Instead of 100+ individual tools, it uses two meta-tools — search and execute — to compress the entire Audius API into ~1,000 tokens of context.
Built with Effect-TS. Runs a QuickJS WASM sandbox for secure code execution.
How It Works
LLM ──► search("trending tracks") → discovers GET /tracks/trending
──► execute("audius.request(...)") → runs code in sandbox, returns results
The LLM writes JavaScript that runs in an isolated sandbox with an authenticated audius.request() client. No API keys in the prompt, no tool explosion, no round-trip overhead.
Tools
| Tool | What it does |
|------|-------------|
| search | Discover API endpoints by tag, path, method, or keyword |
| execute | Run JavaScript against the Audius API in a QuickJS sandbox |
| play | Open a track in the Audius desktop app or browser |
| subgraph | Query on-chain protocol data (staking, governance, nodes) via The Graph |
Quick Start
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





