Skip to content
VS Code

TIDAL MCP for VS Code

io.github.sickn33/tidal-mcp

Search, analyze, organize, and safely modify TIDAL through 112 typed MCP tools.

client:VS Code transport:stdio runtime:npm

Install TIDAL MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tidal-mcp-enable-writes",
      "description": "TIDAL_MCP_ENABLE_WRITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tidal-mcp-data-dir",
      "description": "TIDAL_MCP_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "tidal-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sickn33/tidal-mcp"
      ],
      "env": {
        "TIDAL_MCP_ENABLE_WRITES": "${input:tidal-mcp-enable-writes}",
        "TIDAL_MCP_DATA_DIR": "${input:tidal-mcp-data-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

TIDAL MCP in other clients