best-cad-mcp for VS Code
io.github.lokmenower/best-cad-mcp
Windows AutoCAD MCP server for handle-first CAD automation, validation, and drawing exports.
client:VS Code
transport:stdio
runtime:pypi
Install best-cad-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cad-mcp-workspace-root",
"description": "CAD_MCP_WORKSPACE_ROOT",
"password": true
}
],
"servers": {
"best-cad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"best-cad-mcp"
],
"env": {
"CAD_MCP_WORKSPACE_ROOT": "${input:cad-mcp-workspace-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs