Igor Pro Bridge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Igor Pro Bridgeprint 'Hello World' to the Igor Pro history"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Igor Pro Bridge
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.
Related MCP server: altium-mcp
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 Filesnavigate to the output\win\x64\xop\Release subfolder from the unpacked XOP
Put a shortcut to
ZeroMQ-64.xopin theIgor Extensions (64-bit)folderPut 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceMCP server for controlling jamovi from MCP clients. It starts a local jamovi engine process and exposes tools for opening datasets, reading/writing data, running analyses, exporting results, and saving .omv files.Last updated1MIT
- Alicense-qualityDmaintenanceEnables querying PCB and schematic data and driving DelphiScript automation in Altium Designer via MCP.Last updated8MIT
- AlicenseAqualityDmaintenanceEnables evaluating Wolfram Language code and retrieving Wolfram Engine version/license info through an MCP interface.Last updated44MIT
- Alicense-qualityCmaintenanceConnects MCP-compatible clients to a live Blender scene for AI-assisted 3D workflows, enabling inspection and controlled operations on objects, materials, cameras, lights, render settings, animation, UVs, Geometry Nodes, imports, exports, and Python execution.Last updatedMIT
Related MCP Connectors
Connect any MCP client to MetaTrader 4/5 to read prices, manage positions, and place trades.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Remote MCP server for full read/write access to a Zotero library
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/byte-physics/igor-bridge-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server