Skip to content
VS Code

Alibre Design CAD MCP Server for VS Code

io.github.stephensmitchell/alibreobjectmodel.mcp

MCP server exposing the Alibre Design CAD API: parts, sketches, features, parameters.

client:VS Code transport:stdio runtime:nuget

Install Alibre Design CAD MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "alibre-install-dir",
      "description": "ALIBRE_INSTALL_DIR",
      "password": true
    }
  ],
  "servers": {
    "alibreobjectmodel.mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "AlibreObjectModel.Mcp",
        "--yes"
      ],
      "env": {
        "ALIBRE_INSTALL_DIR": "${input:alibre-install-dir}"
      }
    }
  }
}

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

Alibre Design CAD MCP Server in other clients