spotify bulk actions mcp for VS Code
io.github.khglynn/spotify-bulk-actions-mcp
MCP server for bulk Spotify operations - batch playlist creation, exports, management
client:VS Code
transport:stdio
runtime:pypi
Install spotify bulk actions mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "spotify-client-id",
"description": "SPOTIFY_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "spotify-client-secret",
"description": "SPOTIFY_CLIENT_SECRET",
"password": true
}
],
"servers": {
"spotify-bulk-actions-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"spotify-bulk-actions-mcp"
],
"env": {
"SPOTIFY_CLIENT_ID": "${input:spotify-client-id}",
"SPOTIFY_CLIENT_SECRET": "${input:spotify-client-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs