tidal mcp for VS Code
io.github.ibeal/tidal-mcp
MCP server for TIDAL - search tracks, manage playlists, and get personalized recommendations
client:VS Code
transport:stdio
runtime:oci
Install tidal mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tidal-mcp-port",
"description": "TIDAL_MCP_PORT",
"password": true
}
],
"servers": {
"tidal-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ibeal/tidal-mcp:latest"
],
"env": {
"TIDAL_MCP_PORT": "${input:tidal-mcp-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs