import type { ToolConfig, ToolResponse } from '@/tools/types' interface SpotifyUnfollowArtistsParams { accessToken: string artistIds: string } interface SpotifyUnfollowArtistsResponse extends ToolResponse { output: { success: boolean } } export const spotifyUnfollowArtistsTool: ToolConfig< SpotifyUnfollowArtistsParams, SpotifyUnfollowArtistsResponse > = { id: 'spotify_unfollow_artists', name: 'Spotify Unfollow Artists', description: 'Unfollow one or more artists.', version: '1.0.0', oauth: { required: true, provider: 'spotify', requiredScopes: ['user-follow-modify'], }, params: { artistIds: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Comma-separated artist IDs to unfollow (max 50)', }, }, request: { url: (params) => { const ids = params.artistIds .split(',') .map((id) => id.trim()) .slice(0, 50) .join(',') return `https://api.spotify.com/v1/me/following?type=artist&ids=${ids}` }, method: 'DELETE', headers: (params) => ({ Authorization: `Bearer ${params.accessToken}`, 'Content-Type': 'application/json', }), }, transformResponse: async (): Promise => { return { success: true, output: { success: true }, } }, outputs: { success: { type: 'boolean', description: 'Whether artists were unfollowed successfully' }, }, }