← Discover MCPs and Agents
c
MCPAI & MLGitHub

codex-multisim-mcp

Let OpenAI Codex control NI Multisim through a local MCP server for component placement, wiring, screenshots, and saving designs.

Links

README

From the repo.

Codex Multisim MCP

Control NI Multisim from OpenAI Codex through a local Model Context Protocol (MCP) server. Codex can launch Multisim, place components, draw wires, save a design, and capture the Multisim window for visual verification.

The server is local and dependency-light: it uses a small Win32 bridge and a plain Node.js STDIO MCP server. No Python, AutoHotkey, npm install, cloud service, or API key is required.

Requirements

  • Windows 10 or Windows 11
  • NI Multisim installed locally
  • OpenAI Codex app, CLI, or IDE extension
  • Node.js 18 or newer

Multisim 14.0 in Simplified Chinese and English has been tested. Component dialog detection also includes a language-independent structural fallback. Other Multisim releases may need calibration through multisim_inspect_controls.

Install

  1. Download codex-multisim-mcp-windows-v1.0.0.zip from GitHub Releases.
  2. Extract the archive.
  3. Open PowerShell in the extracted directory.
  4. Run:
powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\install.ps1

The installer:

  • verifies Node.js;
  • copies the runtime to %LOCALAPPDATA%\MultisimMCP;
  • adds a managed multisim block to ~/.codex/config.toml;
  • runs an MCP protocol smoke test.

Restart Codex or open a new Codex thread after installation. Then try:

Check Multisim status, open it, and place a 74LS00 on a new design.

Project-only install

To expose the MCP only inside one trusted Codex project:

powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\install.ps1 `
  -Scope Project `
  -ProjectPath "C:\path\to\your\project"

This installs the runtime under the project's .codex\tools directory and updates that project's .codex\config.toml.

Custom Multisim location

The bridge searches the Windows file associations and standard National Instruments installation directories. If discovery fails, set:

$env:MULTISIM_EXE = "D:\NI\Circuit Design Suite\multisim.exe"

For a persistent user environment variable:

[Environment]::SetEnvironmentVariable(
  "MULTISIM_EXE",
  "D:\NI\Circuit Design Suite\multisim.exe",
  "User"
)

Restart Codex after changing the persistent variable.

Available tools

ToolPurpose
multisim_statusDetect Multisim and report its active window
multisim_launchStart Multisim or open a design
multisim_new_designCreate a blank design
multisim_place_componentSearch and place a database component
multisim_wireDraw a wire through optional explicit via points
multisim_auto_routeDraw a one-bend Manhattan route
multisim_save_designSave or Save As
multisim_screenshotCapture the Multisim window
multisim_inspect_controlsInspect controls for version calibration

Coordinate model

Placement and wiring coordinates are physical pixels relative to the top-left corner of the Multisim main window. A reliable Codex workflow is:

  1. call multisim_status;
  2. call multisim_screenshot;
  3. place components;
  4. capture another screenshot;
  5. wire the visible pin endpoints;
  6. verify and save.

multisim_auto_route is deterministic one-bend routing, not a full PCB or schematic obstacle-solving router. Use explicit via points with multisim_wire for multi-bend routes.

Uninstall

powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\uninstall.ps1

For a project-only installation:

powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\uninstall.ps1 `
  -Scope Project `
  -ProjectPath "C:\path\to\your\project"

The uninstaller removes only the marked configuration block managed by this project. Other Codex settings and MCP servers are left untouched.

Build from source

The release archive and repository include bin\multisim-cli.exe. To rebuild it using the .NET Framework compiler included with Windows:

powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\build.ps1
node .\test\protocol-smoke.js

Create a GitHub-ready release archive:

powershell.exe -NoProfile -ExecutionPolicy Bypass `
  -File .\scripts\package-release.ps1

Security notes

This MCP controls a desktop application with simulated keyboard and mouse input. Codex is configured to prompt before state-changing Multisim tools. Review requested actions before approval, especially Save As paths.

License

MIT

Collected info

  • 12 stars
  • Language: C#
  • Source updated: 9/1/2026

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.