spotify23

spotify23

4.0

Spotify23 is a powerful MCP server designed to access and manage a vast array of music and podcast data from Spotify.

Spotify23 MCP Server is a robust platform that provides developers and users with seamless access to Spotify's extensive music and podcast database. It allows for the exploration of millions of songs, podcasts, artists, albums, and playlists. The server is designed to offer fast and reliable access, ensuring a smooth experience. With Spotify23, users can perform searches, retrieve artist details, access track information, explore playlists, and much more. The server's high-performance capabilities make it an ideal choice for integrating and managing Spotify data within various applications.

Features

  • Popularity: 9.9
  • Service Level: 100%
  • Latency: 420ms

MCP Tools

  • Search: Perform searches across different categories.
  • Get Artists: Retrieve details of one or more artists.
  • Get Tracks: Retrieve details of one or more tracks.
  • Get Playlist: Access details of a playlist.
  • Podcast Episodes: Access episodes of a podcast show.

Usage with Different Platforms

python

python
import requests

url = 'https://api.spotify23.com/v1/search'
params = {
    'q': 'artist:Radiohead',
    'type': 'artist'
}
response = requests.get(url, params=params)
print(response.json())

javascript

javascript
fetch('https://api.spotify23.com/v1/search?q=artist:Radiohead&type=artist')
  .then(response => response.json())
  .then(data => console.log(data));