Igor Pro Bridge
БесплатноНе проверенExposes a running Igor Pro instance to MCP clients, enabling command execution, wave data reading, compilation management, and launching/relaunching Igor Pro.
Описание
Exposes a running Igor Pro instance to MCP clients, enabling command execution, wave data reading, compilation management, and launching/relaunching Igor Pro.
README
An MCP server that exposes a running Igor Pro instance to Claude (or any MCP
client) as a set of tools: run commands, read wave data, manage compilation,
launch/relaunch Igor Pro, and more. It talks to Igor Pro over the
ZeroMQ-XOP's CallFunction
JSON protocol (a plain localhost TCP socket), calling into Igor-side helper
functions in procedure/ZMQ_BridgeHelpers.ipf (the ZBR independent module).
Key functions
- Run commands —
execute_igor_command/execute_igor_command_unattendedrun a command string on Igor's command line and return what it printed (_unattendedalso disables/restores Igor's Debugger around the call, so a runtime error can't pop an undismissable modal dialog). - Long-running commands —
submit_igor_command/submit_igor_command_unattendedqueue a command and return a token immediately without waiting;poll_igor_commandchecks completion later. Reliable across bridge/Claude Desktop restarts, and across waits of any length (hours to weeks), since all state lives in Igor Pro's own data waves, not in this bridge's process. - Read data back —
get_wavereturns an existing wave's full data and metadata (any dimensionality, numeric/complex/text/wave-reference).read_session_historyreads back everything sent to Igor's history area. - Compilation management —
check_compilation_state/reload_and_compile_procedurescheck and refresh Igor's compiled state after editing a.ipffile on disk;dismiss_compile_error_dialogcloses a stuck "Function Compilation Error" dialog without needing OS focus. - Debugger control —
get_debugger_state/set_debugger_enabled/restore_debugger_settingsread, change, and restore Igor's Debugger settings (must be disabled for unattended/automated use). - Environment inspection —
get_environment_summarysummarizes the live instance (version, loaded experiment, XOPs, included procedure files, data folders, Debugger settings).read_help_filereads an Igor help file (.ihf) as structured text.get_bridge_versionreports the running bridge/Python/package versions. - Launching and switching instances —
configure_igor_launchrecords the Igor Pro executable path to use, and optionally a custom ZeroMQ port (for talking to more than one Igor Pro instance, one at a time);launch_igor_pro_unattendedlaunches it with/UNATTENDEDand waits for it to become reachable;load_experimentquits the running instance and relaunches it with a.pxpfile path as a launch argument. - Health check —
check_bridge_healthdiagnoses whether this bridge can reach Igor Pro's ZeroMQ server right now.
How to install
This bridge is a local MCP server (stdio transport): it only works from a Claude Desktop session running on the same Windows machine as Igor Pro.
One-time Igor-side setup:
- Add the ZeroMQ XOP to Igor Pro
- The XOP is shipped in the ZeroMQ-XOP folder
- Unpack the zip file with subfolders
- Open Igor Pro and from the Help menu choose
Show Igor Pro User Files - navigate to the output\win\x64\xop\Release subfolder from the unpacked XOP
- Put a shortcut to
ZeroMQ-64.xopin theIgor Extensions (64-bit)folder - Put a shortcut to the
procedure\ZMQ_BridgeHelpers.ipffile in theIgor Proceduresfolder
Install the pinned Python dependencies, into the same Python environment Claude Desktop itself resolves when it launches the bridge:
.\install.ps1Run this from an elevated PowerShell (elevation is required only for
pywin32's one-time COM-support DLL registration, not for running the bridge or Igor Pro afterward). Optionally, pass-PythonPathto target a specific interpreter if auto-resolution picks the wrong one. SeeGet-Help ./install.ps1 -Fullfor details.Install the Claude Desktop extension (
.mcpb). A pre-built package is included atmcp/igor-pro-bridge-2.3.2.mcpb. In Claude Desktop, go to Settings → Extensions → Advanced settings → Extension Developer → Install Extension, and select that file. Do not register this bridge by manually editingclaude_desktop_config.json— that does not work reliably for local MCP servers in current Claude Desktop builds.Restart Claude Desktop fully, then call the bridge's
get_bridge_versiontool to confirm it's running, andcheck_bridge_healthto confirm it can reach Igor Pro.
First steps
- When starting Igor Pro there should be a printout in the history
Igor Pro Bridge MCP bound through ZMQ at port 5680. - Close Igor Pro
- In Claude Desktop (or your agent), say you want to start Igor Pro. It should ask you for the path. Give the path and it will remember it and start Igor Pro.
- Ask to print "Hello World" to the Igor Pro history
The general idea is that you have some repository / folder where your .ipf files are that you work on. Allow Claude write access to this folder. Then it can edit these files on disk and reload the changes in Igor Pro and recompile. It is worthwhile to hint Claude that it should read the Igor Help for specific tasks first as it has a dedicated function for this included.
Advanced Use
The mcp folder includes some session notes to help Claude.
Allow Claude to create and include an own procedure file for scratch code, like small utility functions that Claude can create and run. This enables much more powerful tooling than just running commands or calling already present function code.
The MCP Bridge is able to run multiple instances of Igor Pro with different ports for ZeroMQ communication. You can ask Claude to start a new Igor Pro instance with a custom port. (default is 5680) Then Claude can talk and identify each instance by its port and work with each Igor Pro instance independently.
Claude Desktop can take advantage of the Igor Programming Tool ! If you put ipt in your working folder or PATH then Claude can call it to generate symbol tables or the advanced syntax tree of your Igor Pro code and thus, understand it better. The ipt tool is also suitable for automatically formatting Igor code.
Requirements
- Igor Pro 9.00 or later, running on Windows, with the ZeroMQ-XOP installed and loaded.
procedure/ZMQ_BridgeHelpers.ipf(or a copy of it)#include-d and compiled into the target experiment.- Python (accessible as
pythonon PATH), with the pinned packages inrequirements.txtinstalled into that same environment —mcp,pyzmq, and (on Windows)pywin32.requirements.txtpins every package, direct and transitive, with hashes for supply-chain integrity; install withinstall.ps1rather than a plainpip install.
Установка Igor Pro Bridge
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/byte-physics/igor-bridge-mcp-serverFAQ
Igor Pro Bridge MCP бесплатный?
Да, Igor Pro Bridge MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Igor Pro Bridge?
Нет, Igor Pro Bridge работает без API-ключей и переменных окружения.
Igor Pro Bridge — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Igor Pro Bridge в Claude Desktop, Claude Code или Cursor?
Открой Igor Pro Bridge на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Igor Pro Bridge with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
