Spotify
Service domainMUSIC STREAMING
Arcade Optimized
Arcade.dev LLM tools for Spotify
13tools
Spotify Toolkit
The Spotify toolkit integrates Spotify's Web API with Arcade, enabling LLMs to control playback, search the catalog, and retrieve listening state on behalf of authenticated users.
Capabilities
- Playback control: Pause, resume, skip to next/previous track, seek to an absolute or relative position within the current track (with automatic boundary clamping), and start playback for a specific list of tracks by ID.
- Artist & track shortcuts: Play a track by name or play an artist by name (auto-queuing four additional tracks by that artist).
- State & device inspection: Retrieve the current playback state (track/episode, device, progress), the currently playing item, and the list of available devices.
- Catalog search: Query Spotify's full catalog with optional field filters (
album,artist,track,year,genre,isrc,upc,tag:new,tag:hipster) across tracks, albums, artists, and episodes. - Track lookup: Fetch metadata for any track by its Spotify ID.
OAuth
This toolkit uses OAuth 2.0 via the Spotify provider. See the Arcade Spotify auth provider docs for setup instructions, required app credentials, and scope details.
Available tools(13)
13 of 13 tools
Operations
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Adjust the playback position within the currently playing track.
Knowledge of the current playback state is NOT needed to use this tool as it handles
clamping the position to valid start/end boundaries to prevent overshooting or negative values.
This tool allows you to seek to a specific position within the currently playing track.
You can either provide an absolute position in milliseconds or a relative position from
the current playback position in milliseconds.
Note:
Either absolute_position_ms or relative_position_ms must be provided, but not both. | |||
Get the available devices | |||
Get information about the user's currently playing track | |||
Get information about the user's current playback state,
including track or episode, and active device.
This tool does not perform any actions. Use other tools to control playback. | |||
Get information about a track | |||
Pause the currently playing track, if any | |||
Plays a song by an artist and queues four more songs by the same artist | |||
Plays a song by name | |||
Resume the currently playing track, if any | |||
Search Spotify catalog information
Explanation of the q parameter:
You can narrow down your search using field filters.
Available filters are album, artist, track, year, upc, tag:hipster, tag:new, isrc, and
genre. Each field filter only applies to certain result types.
The artist and year filters can be used while searching albums, artists and tracks.
You can filter on a single year or a range (e.g. 1955-1960).
The album filter can be used while searching albums and tracks.
The genre filter can be used while searching artists and tracks.
The isrc and track filters can be used while searching tracks.
The upc, tag:new and tag:hipster filters can only be used while searching albums.
The tag:new filter will return albums released in the past two weeks and tag:hipster
can be used to return only albums with the lowest 10% popularity.
Example: q="remaster track:Doxy artist:Miles Davis" | |||
Skip to the next track in the user's queue, if any | |||
Skip to the previous track in the user's queue, if any | |||
Start playback of a list of tracks (songs) |
Last updated on