Cross-platform intelligence bridge — correlate Ignition SCADA tags with Studio 5000 PLC logic end-to-end.
Note
This connector is early community tooling from Nodeblue. The complete system is Nexus, our industrial intelligence platform — these repos are just its connector layers.
Nexus reads and reasons over your entire operation: PLC logic, SCADA systems, live controller data, documentation, fault history, and MES/ERP records. It works across vendors — Rockwell, Siemens, Ignition, the CODESYS family, and 500+ more brands through PLCopen. It diagnoses faults on the running line, holds a persistent memory of the operation, and answers in plain English, cited to the source.
| Connector | What it does |
|---|---|
| studio5000-mcp-server | Rockwell/Allen-Bradley Studio 5000 — parse L5X exports: tags, UDTs, routines, AOIs, cross-references |
| ignition-mcp-server | Ignition SCADA — views, scripts, tags, UDTs, alarms, live gateway read/write |
| bridge-mcp-server (this repo) | Correlates Ignition SCADA tags with Studio 5000 PLC logic end-to-end |
bridge-mcp-server connects ignition-mcp-server and studio5000-mcp-server via the Model Context Protocol. It gives AI agents the ability to:
- Correlate — build a full tag-by-tag map between an Ignition SCADA project and a Studio 5000 L5X PLC export
- Trace — follow a single tag end-to-end from Ignition config → OPC item path → L5X tag → every rung of PLC logic that references it
- Find gaps — identify commissioning mismatches: Ignition OPC tags with no PLC counterpart, and L5X tags with no Ignition reference
It maps Ignition OPC tag paths to L5X tag names using convention-based normalization (with optional explicit mapping file override), then leverages the Studio 5000 cross-reference engine to find every line of PLC logic that references the matched tag.
Ignition and Studio 5000 are the two most common platforms in North American industrial automation, and they almost always exist together — yet there's no tooling that connects them. Commissioning engineers manually cross-reference tag databases in spreadsheets. This server automates that.
Built and maintained by Nodeblue. These connectors are early community tooling from our work on Nexus, where this capability ships production-grade — alongside cross-vendor correlation, live fault diagnosis, and a persistent memory of the operation.
pip install bridge-mcp-serverThis also installs ignition-mcp-server and studio5000-mcp-server as dependencies. Requires Python 3.10+.
To install from source instead:
git clone https://github.com/Nodeblue-AI/bridge-mcp-server.git
cd bridge-mcp-server
pip install -e .bridge-mcp-serverbridge-mcp-server --transport sse --port 8082Add to your ~/.kiro/settings.json:
{
"mcpServers": {
"bridge": {
"command": "bridge-mcp-server",
"args": []
}
}
}Add to your Claude Desktop MCP config:
{
"mcpServers": {
"bridge": {
"command": "bridge-mcp-server",
"args": []
}
}
}Start the server on your engineering workstation:
bridge-mcp-server --transport sse --host 0.0.0.0 --port 8082Connect from any MCP client using the SSE URL: http://<host>:8082/sse
Health check. Returns "pong".
Build a full correlation map between an Ignition project and an L5X PLC project.
correlate_projects("/path/to/ignition-project", "/path/to/plc.l5x")
Returns:
{
"matched": [
{
"ignitionPath": "Conveyors/Line1/Running",
"opcItemPath": "ns=1;s=[PLC]Motor_1.Running",
"l5xTag": "Motor_1",
"l5xMember": "Motor_1.Running",
"l5xDataType": "Motor_UDT",
"l5xScope": "controller"
}
],
"ignitionOnly": [],
"l5xOnly": [
{"name": "EmergencyStop", "dataType": "BOOL", "scope": "controller"}
],
"stats": {"matched": 3, "ignitionOnly": 0, "l5xOnly": 5, "totalIgnitionOpc": 3, "totalL5x": 8}
}Deep end-to-end trace of a single tag from SCADA to PLC logic.
trace_tag("/path/to/ignition-project", "/path/to/plc.l5x", "Running")
Returns the complete signal chain: Ignition tag config → OPC item path → L5X tag details → every rung/line of PLC logic that references it.
Identify commissioning gaps — tags that exist on one side but not the other.
find_unmapped_tags("/path/to/ignition-project", "/path/to/plc.l5x")
The bridge uses convention-based mapping by default:
| Ignition OPC Item Path | L5X Tag Name |
|---|---|
ns=1;s=[PLC]Motor_1.Running |
Motor_1.Running |
[PLC]Motor_1.Running |
Motor_1.Running |
[PLC]Program:MainProgram.StartPB |
Program:MainProgram.StartPB |
Motor_1.Running |
Motor_1.Running (passthrough) |
For complex setups (aliased tags, scaled values), provide a JSON mapping file:
{
"ns=1;s=[PLC]Custom_Alias": "Motor_1.Running",
"ns=1;s=[PLC]Scaled_Speed": "LineSpeed"
}Pass it via mapping_file parameter on any tool.
"Show me every Ignition OPC tag and its matching PLC tag — I need to verify the full correlation before we go live."
Agent calls: correlate_projects("/projects/MyPlant", "/plc/MainPLC.l5x")
"The Conveyors/Line1/Running tag is triggering an alarm in Ignition. What PLC logic drives it?"
Agent calls: trace_tag("/projects/MyPlant", "/plc/MainPLC.l5x", "Running")
Agent: The Ignition tag Conveyors/Line1/Running maps to PLC tag Motor_1.Running
via OPC path ns=1;s=[SampleController]Motor_1.Running.
Motor_1 is a Motor_UDT instance. Motor_1.Running is referenced in:
- MainProgram/MainRoutine rung 1: Motor_Control AOI call
- MainProgram/MainRoutine rung 2: Fault detection branch
- MainProgram/FaultHandler line 1: IF Motor_1.Faulted THEN...
The Motor_Control AOI sets Running from MotorFeedback (rung 4).
"Which PLC tags exist in the L5X but aren't wired up in Ignition yet? We need to close gaps before FAT."
Agent calls: find_unmapped_tags("/projects/MyPlant", "/plc/MainPLC.l5x")
-
correlate_projects— full tag-by-tag map between Ignition and L5X -
trace_tag— end-to-end signal chain from SCADA to PLC logic -
find_unmapped_tags— commissioning gap detection - Convention-based OPC path → L5X tag name normalization
- Optional JSON mapping file for explicit overrides
- Correlation index caching per project pair
- stdio and SSE transport support
- Mapping file auto-generation from correlation results (contributions welcome)
- PyPI publication (
pip install bridge-mcp-server) - Bug fixes and OPC path-convention edge cases from real projects — issues welcome
This connector is feature-complete for its scope: one Ignition project against one L5X export. Development beyond that scope happens in Nexus.
The connector is the access layer. Nexus is the intelligence that sits on top of it — and of every other connector — as one system.
| Capability | This connector | Nexus |
|---|---|---|
| Correlate one Ignition project with one L5X export | ✅ | ✅ |
| Trace a single tag from SCADA to PLC logic | ✅ | ✅ |
| Commissioning gap detection | ✅ | ✅ |
| Multi-PLC / whole-plant correlation | — | ✅ |
| Alarm pipeline → PLC trigger-logic tracing | — | ✅ |
| Cross-vendor: Siemens, CODESYS family (500+ brands), OPC UA | — | ✅ |
| Live fault diagnosis on the running line (root-cause, cited) | — | ✅ |
| Knowledge layer: your manuals, SFS/DOO docs, fault history — searchable, linked to logic | — | ✅ |
| Persistent memory of the operation across sessions | — | ✅ |
| Fleet scale: auto-discovery, whole-plant inventory, monitoring, alarming | — | ✅ |
| Local LLM / air-gapped deployment | — | ✅ |
If you're evaluating this connector for more than one PLC, talk to us about Nexus.
git clone https://github.com/Nodeblue-AI/bridge-mcp-server.git
cd bridge-mcp-server
pip install -e .
pip install pytest
pytest tests/ -vsrc/bridge_mcp_server/
├── __init__.py # v0.4.0
├── __main__.py # CLI entry point (stdio/SSE)
├── server.py # FastMCP with 4 tools (ping + 3 correlation tools)
└── correlator.py # OPC path normalizer + correlation engine
tests/
└── test_correlator.py
MIT — see LICENSE.
Built by Nodeblue. Early community tooling behind Nexus — the industrial intelligence system that reads your operation and answers, cited to the source.