Skip to content
VS Code

tracktag mcp for VS Code

io.github.adigold/tracktag-mcp

AI music analysis for agents: BPM, key, genres, moods, instruments and 35+ tags per track.

client:VS Code transport:stdio runtime:npm

Install tracktag mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tracktag-api-key",
      "description": "TRACKTAG_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "tracktag-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tracktag-mcp"
      ],
      "env": {
        "TRACKTAG_API_KEY": "${input:tracktag-api-key}"
      }
    }
  }
}

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

tracktag mcp in other clients