other
Spotify MCP Integration for Vercel AI SDK
Connect Spotify to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Spotify to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
Spotify MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-spotify": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=spotify",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=spotify --write=deny Why Use KosmoKrator Here
Expose only Spotify instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Spotify Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Spotify integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__spotify__spotify_search | spotify.spotify_search | Read | Search for tracks, artists, albums, or playlists on Spotify. Returns matching items with basic metadata. Use specific get tools for detailed information about a single item. |
integration__spotify__spotify_get_track | spotify.spotify_get_track | Read | Get detailed information about a specific Spotify track, including artists, album, duration, and popularity. |
integration__spotify__spotify_get_artist | spotify.spotify_get_artist | Read | Get detailed information about a specific Spotify artist, including followers, genres, and popularity. |
integration__spotify__spotify_list_playlists | spotify.spotify_list_playlists | Read | List the current user's Spotify playlists. Returns playlist names, IDs, and track counts. |
integration__spotify__spotify_get_playlist | spotify.spotify_get_playlist | Read | Get detailed information about a Spotify playlist, including its tracks with artist and album details. |
integration__spotify__spotify_create_playlist | spotify.spotify_create_playlist | Write | Create a new Spotify playlist for the current user. Use the "Get Current User" tool first if you need the user ID. |
integration__spotify__spotify_list_albums | spotify.spotify_list_albums | Read | List albums by a specific Spotify artist. Includes singles and compilations by default. |
integration__spotify__spotify_get_current_user | spotify.spotify_get_current_user | Read | Get the authenticated user's Spotify profile, including their user ID (needed for creating playlists), display name, and follower count. |