Music and podcast platform
## SoundCloud MCP Server: Audio Streaming Platform The **SoundCloud MCP Server** integrates the SoundCloud music platform into Google Antigravity, enabling AI-assisted music discovery, playlist management, and audio content exploration. ### Why SoundCloud MCP? - **Music Discovery**: Discover independent artists and emerging music across all genres - **Playlist Management**: Create, edit, and organize playlists for any mood or activity - **Artist Following**: Track favorite artists and get updates on new releases - **Audio Analytics**: Access play counts, likes, and engagement metrics - **Track Management**: For creators, manage uploaded tracks and analytics ### Key Features #### 1. Music Discovery ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find trending electronic music tracks released this month" }] ) ``` #### 2. Playlist Creation ```python # Manage playlists response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a playlist of chill lo-fi beats for coding sessions" }] ) ``` #### 3. Artist Tracking ```python # Follow artists response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show new releases from artists I follow this week" }] ) ``` #### 4. Analytics ```python # View stats response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show analytics for my uploaded tracks including plays and engagement" }] ) ``` ### Configuration ```json { "mcpServers": { "soundcloud": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-soundcloud"], "env": { "SOUNDCLOUD_CLIENT_ID": "your-client-id", "SOUNDCLOUD_OAUTH_TOKEN": "your-oauth-token" } } } } ``` ### Use Cases **Music Discovery**: Find new music and emerging artists across genres. **Playlist Curation**: Build and manage playlists for different activities. **Creator Analytics**: Track performance of uploaded audio content. **Background Music**: Find focus and productivity playlists for work. The SoundCloud MCP Server brings audio discovery and management into your workflow for both listeners and creators.
{
"mcpServers": {
"soundcloud": {
"mcpServers": {
"soundcloud": {
"env": {
"SOUNDCLOUD_CLIENT_ID": "your-client-id"
},
"args": [
"-y",
"soundcloud-mcp-server"
],
"command": "npx"
}
}
}
}
}