set-spotify-credentials
Configure Spotify authentication credentials (Client ID, Client Secret, Access Token, Refresh Token) for the Spotify MCP Server to enable user account interactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessToken | Yes | The Spotify Access Token | |
clientId | Yes | The Spotify Client ID | |
clientSecret | Yes | The Spotify Client Secret | |
refreshToken | Yes | The Spotify Refresh Token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessToken": {
"description": "The Spotify Access Token",
"type": "string"
},
"clientId": {
"description": "The Spotify Client ID",
"type": "string"
},
"clientSecret": {
"description": "The Spotify Client Secret",
"type": "string"
},
"refreshToken": {
"description": "The Spotify Refresh Token",
"type": "string"
}
},
"required": [
"clientId",
"clientSecret",
"accessToken",
"refreshToken"
],
"type": "object"
}