layergen mcp for VS Code
io.github.adebayojuwon200-pixel/layergen-mcp
Layergen 3D model generation, retexture, and repair — for Claude Desktop and any MCP host.
client:VS Code
transport:stdio
runtime:npm
Install layergen mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "layergen-api-key",
"description": "LAYERGEN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "layergen-api-url",
"description": "LAYERGEN_API_URL",
"password": true
}
],
"servers": {
"layergen-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@layergen/mcp"
],
"env": {
"LAYERGEN_API_KEY": "${input:layergen-api-key}",
"LAYERGEN_API_URL": "${input:layergen-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs