labelgrid mcp for VS Code
io.github.labelgrid/labelgrid-mcp
Official LabelGrid MCP server — manage your music catalog, releases, analytics and distribution.
client:VS Code
transport:stdio
runtime:npm
Install labelgrid mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "labelgrid-api-token",
"description": "LABELGRID_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-api-url",
"description": "LABELGRID_API_URL",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-enable-writes",
"description": "LABELGRID_ENABLE_WRITES",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-enable-full-writes",
"description": "LABELGRID_ENABLE_FULL_WRITES",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-full-writes-ack",
"description": "LABELGRID_FULL_WRITES_ACK",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-toolsets",
"description": "LABELGRID_TOOLSETS",
"password": true
},
{
"type": "promptString",
"id": "labelgrid-read-only",
"description": "LABELGRID_READ_ONLY",
"password": true
}
],
"servers": {
"labelgrid-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
],
"env": {
"LABELGRID_API_TOKEN": "${input:labelgrid-api-token}",
"LABELGRID_API_URL": "${input:labelgrid-api-url}",
"LABELGRID_ENABLE_WRITES": "${input:labelgrid-enable-writes}",
"LABELGRID_ENABLE_FULL_WRITES": "${input:labelgrid-enable-full-writes}",
"LABELGRID_FULL_WRITES_ACK": "${input:labelgrid-full-writes-ack}",
"LABELGRID_TOOLSETS": "${input:labelgrid-toolsets}",
"LABELGRID_READ_ONLY": "${input:labelgrid-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs