AlbumentationsX MCP for VS Code
io.github.dkosarevsky/albu-mcp
AlbumentationsX MCP for batch previews, compare preview runs, segmentation masks, and exports.
client:VS Code
transport:stdio
runtime:pypi
Install AlbumentationsX MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "albu-mcp-allowed-roots",
"description": "ALBU_MCP_ALLOWED_ROOTS",
"password": true
},
{
"type": "promptString",
"id": "albu-mcp-artifact-root",
"description": "ALBU_MCP_ARTIFACT_ROOT",
"password": true
},
{
"type": "promptString",
"id": "albu-mcp-max-preview-runs",
"description": "ALBU_MCP_MAX_PREVIEW_RUNS",
"password": true
}
],
"servers": {
"albu-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"albumentationsx-mcp"
],
"env": {
"ALBU_MCP_ALLOWED_ROOTS": "${input:albu-mcp-allowed-roots}",
"ALBU_MCP_ARTIFACT_ROOT": "${input:albu-mcp-artifact-root}",
"ALBU_MCP_MAX_PREVIEW_RUNS": "${input:albu-mcp-max-preview-runs}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs