ldraw-mcp for VS Code
io.github.musharna/ldraw-mcp
Render LDraw/LEGO models to images with real part geometry via headless Blender + ImportLDraw
client:VS Code
transport:stdio
runtime:pypi
Install ldraw-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ldraw-mcp-blender",
"description": "LDRAW_MCP_BLENDER",
"password": true
},
{
"type": "promptString",
"id": "ldraw-library-path",
"description": "LDRAW_LIBRARY_PATH",
"password": true
}
],
"servers": {
"ldraw-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"ldraw-mcp"
],
"env": {
"LDRAW_MCP_BLENDER": "${input:ldraw-mcp-blender}",
"LDRAW_LIBRARY_PATH": "${input:ldraw-library-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs