soundcloud-mcp-server
Allows managing SoundCloud playlists and tracks, including listing, creating, updating, deleting playlists, adding/removing tracks, searching tracks, and retrieving track details and stream URLs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@soundcloud-mcp-servershow me my playlists"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SoundCloud MCP Server
An MCP (Model Context Protocol) server that gives Claude access to your SoundCloud library. Connect it to Claude Web and manage your playlists and tracks through natural language.
Features
Tool | Description |
| List all your playlists |
| Get a playlist with its full tracklist |
| Create a new playlist |
| Rename, redescribe, or reorder a playlist |
| Append tracks to an existing playlist |
| Remove a track from a playlist |
| Delete a playlist permanently |
| Search SoundCloud tracks by keyword and genre |
| Get details for a specific track |
| Get a direct MP3 stream URL for a track (personal/authorized listening only — see Usage notes) |
Prerequisites
A SoundCloud developer app — register at soundcloud.com/you/apps
A publicly reachable server with HTTPS (required by Claude Web)
Setup
1. Clone and install
git clone https://github.com/marcellkehmstedt/soundcloud-mcp-server
cd soundcloud-mcp-server
npm install
npm run build2. Configure environment variables
cp .env.example .envVariable | Required | Description |
| Yes | Public HTTPS URL of your server, e.g. |
| Yes | Must be |
| No | Port to listen on (default: |
| No | Set to |
| No | Accent color of the login UI (hex |
3. Run
Directly:
npm startWith Docker Compose:
# Edit PUBLIC_URL and SOUNDCLOUD_REDIRECT_URI in docker-compose.yml first
docker compose up -dConnect to Claude Web
Open Claude Web → Settings → Integrations → Add integration
Enter your server URL:
https://your-domain.com/mcpClaude will redirect you to a login form — enter your SoundCloud Client ID and Client Secret from soundcloud.com/you/apps
Authorize the app on SoundCloud
You're connected — Claude can now use your SoundCloud tools
Your SoundCloud credentials are never stored on the server. The access token is issued to Claude directly and used only for API calls.
Endpoints
Endpoint | Description |
| Health check |
| MCP Streamable HTTP endpoint (used by Claude) |
| Test your SoundCloud token directly (see below) |
| OAuth metadata (RFC 8414) |
| Resource metadata (RFC 9728) |
Diagnostic endpoint
If a tool is not returning results, use this to verify your SoundCloud token works:
curl https://your-domain.com/diagnostic \
-H "Authorization: Bearer <your-soundcloud-access-token>"Returns the HTTP status of GET /me and GET /me/playlists so you can tell immediately whether the issue is in the token, the API, or the server.
Debug logging
Enable with MCP_DEBUG=true. Logs go to stderr and cover:
MCP session lifecycle (create / close)
Every JSON-RPC method call and parameters
SoundCloud API requests: method, URL, status, latency, body-read timing
[MCP] new session abc123
[MCP] → tools/call {"name":"get_my_playlists","arguments":{}}
[MCP] session abc123 — POST
[SC] → GET https://api.soundcloud.com/me/playlists (token: 47 chars)
[SC] ← 200 GET https://api.soundcloud.com/me/playlists — 312ms
[SC] reading body (content-length: 18432)
[SC] body parsedArchitecture
Claude Web
│ OAuth 2.0 (RFC 6749 + PKCE)
│ MCP Streamable HTTP (2025-03-26)
▼
Express server
├── /.well-known/* OAuth discovery (RFC 8414 + RFC 9728)
├── /register Dynamic Client Registration (RFC 7591)
├── /oauth/authorize Login form → SoundCloud OAuth redirect
├── /soundcloud/callback Token exchange
├── /oauth/token Issue / refresh MCP access tokens
└── /mcp MCP tools (StreamableHTTPServerTransport)
│
▼
SoundCloud API (api.soundcloud.com)Token flow: Claude Web completes a PKCE OAuth flow against this server. The server exchanges Claude's auth code for a SoundCloud access token and passes it straight through as the MCP Bearer token. Each MCP session uses the token to call the SoundCloud API on Claude's behalf.
Usage notes
get_stream_urlreturns the direct MP3 URL that the SoundCloud API exposes for an authorized user. It is intended for personal, authorized listening only. Do not use it to re-host, re-distribute, or publicly broadcast tracks. Each user is responsible for complying with the SoundCloud API Terms of Use.Each deployer registers their own SoundCloud developer app and supplies their own
client_id/client_secretvia the login form — the server never stores these credentials at rest.
Disclaimer
This is an unofficial integration. This project is not affiliated with, endorsed by, or sponsored by SoundCloud Limited. "SoundCloud" is a trademark of SoundCloud Limited, used here solely in a descriptive sense to refer to the third-party API this software interacts with.
License
This project is licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later).
See the LICENSE file for the full license text.
Copyright (C) 2026 Marcell Kehmstedt.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/marcellkehmstedt/soundcloud-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server