Skip to content
VS Code

Multisim MCP for VS Code

io.github.yxy050208/multisim-mcp

Generate Multisim circuits, run simulations, export data, and create experiment reports.

client:VS Code transport:stdio runtime:pypi

Install Multisim MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "multisim-mcp-template-dir",
      "description": "MULTISIM_MCP_TEMPLATE_DIR",
      "password": true
    }
  ],
  "servers": {
    "multisim-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "multisim-mcp"
      ],
      "env": {
        "MULTISIM_MCP_TEMPLATE_DIR": "${input:multisim-mcp-template-dir}"
      }
    }
  }
}

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

Multisim MCP in other clients