Skip to content
VS Code

AnkusDrive for VS Code

io.github.gchen19/ankusdrive

Drive FreeCAD from an agent: CAD modeling, drawings, FEM, CFD, EM, and multiphysics simulation.

client:VS Code transport:stdio runtime:pypi

Install AnkusDrive in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ankusdrive-freecadcmd",
      "description": "ANKUSDRIVE_FREECADCMD",
      "password": true
    }
  ],
  "servers": {
    "ankusdrive": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ankusdrive"
      ],
      "env": {
        "ANKUSDRIVE_FREECADCMD": "${input:ankusdrive-freecadcmd}"
      }
    }
  }
}

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

AnkusDrive in other clients