Skip to content
VS Code

TechDraw AI for VS Code

io.github.meltflexdevs/techdrawai

Photo to technical drawing, CAD-ready DXF and DWG, 3D models and product renders.

client:VS Code transport:stdio runtime:npm

Install TechDraw AI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "techdrawai-api-key",
      "description": "TECHDRAWAI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "techdrawai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "techdrawai-mcp"
      ],
      "env": {
        "TECHDRAWAI_API_KEY": "${input:techdrawai-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

TechDraw AI in other clients