opcua2mcp
Converts OPC UA sensor data into MCP-compatible tools and exposes machine health via both HTTP and MCP.
README
OPCUA2MCP IIoT Bridge
This repository provides an end-to-end Industrial IoT prototype that converts OPC UA sensor data into MCP-compatible tools and exposes machine health via both HTTP and MCP.

What is opcua2mcp?
opcua2mcp is the core bridge module in src/opcua2mcp.py.
It connects to an OPC UA server, reads sensor values defined in YAML configuration, evaluates sensor health against configurable thresholds, caches readings, and publishes the results through a FastMCP server.
The design is ideal for IIoT deployments that need:
- OPC UA data ingestion from equipment simulators or real PLCs
- MCP tool exposure for model context interoperability
- machine health scoring and alert generation
- optional Redis caching for faster repeated reads
Architecture
app/app.py— start-up script that loadsapp/config.yaml, reads environment variables, and launches the converter.src/opcua2mcp.py— core converter implementation that builds the MCP server and sensor health logic.app/opcua_simulator.py— OPC UA simulator that can be configured from YAML and serves variable sensor values.docker-compose.yml— orchestrates the OPC UA simulator, two machine-specific converter containers, and Redis.
Configuration
The OPC UA simulator and sensor definitions are stored in app/config.yaml.
Example structure:
server:
endpoint: opc.tcp://0.0.0.0:4840
namespace: http://opcua.simulator
update_interval: 2
machines:
Machine-001:
vibration:
node_id: ns=2;s=Machine-001/Device/Vibration
unit: mm/s
threshold: 3.5
initial_value: 2.2
min: 0.5
max: 5.0
step: 0.25
randomize: true
temperature:
node_id: ns=2;s=Machine-001/Device/Temperature
unit: C
threshold: 80.0
initial_value: 68.0
min: 50.0
max: 92.0
step: 1.5
randomize: true
Each machine has named sensors with:
node_idor generated node identifierunitthresholdfor health evaluation- optional simulation parameters:
initial_value,min,max,step,randomize
Running the stack
Install dependencies:
pip install -r requirements.txt
Run with Docker Compose:
docker compose up --build
This brings up:
opcua-simulatorexposing OPC UA on4840opcua2mcp_001exposing MCP and HTTP on5011opcua2mcp_002exposing MCP and HTTP on5021redisfor cache storage
Environment variables
app/app.py supports the following environment variables:
MACHINE_NAME— machine name from YAML config (Machine-001,Machine-002)OPCUA_ENDPOINT— OPC UA server URLCACHE_BACKEND—memoryorredisREDIS_URL— Redis connection URLCACHE_TTL— seconds to keep cached sensor resultsMCP_PORT— internal HTTP/MCP service portOPCUA_CONFIG— path to the YAML config file
API Reference
MCP Exposure
src/opcua2mcp.py registers two MCP tools via FastMCP:
-
health.check- title: Machine Health Check
- returns current machine health, score, alerts, and sensor readings
-
read.sensors- title: Read All Sensors
- returns the latest sensor values for the configured machine
These tools are available through the MCP /mcp endpoint supported by FastMCP.
HTTP Routes
In addition to the MCP tools, opcua2mcp exposes three HTTP endpoints on the same service port:
-
GET /health- returns the current health status for the machine
- fields include:
machine_name,status,health_score,alerts,total_sensors,sensor_readings,timestamp
-
GET /sensors- returns latest sensor values and status for every configured sensor
- this forces a fresh read from OPC UA before replying
-
GET /cache- returns the current cache contents
- includes cached sensor readings stored in memory or Redis
Example HTTP usage
curl http://localhost:5011/health
curl http://localhost:5011/sensors
curl http://localhost:5011/cache
Why opcua2mcp?
This bridge is designed to sponsor MCP adoption by demonstrating a real IIoT use case:
- converting OPC UA telemetry into MCP tool semantics
- evaluating machine health automatically
- exposing both standard HTTP and MCP-compatible interfaces
- enabling multi-machine deployments with one YAML-driven config
Extending the bridge
You can extend src/opcua2mcp.py by:
- adding new MCP tools for individual sensor reads
- enriching health logic with custom scoring rules
- adding additional OPC UA namespaces or node discovery
- supporting more machine types in
app/config.yaml
Important files
src/opcua2mcp.py— main converter and MCP server definitionapp/app.py— launch script and environment-driven startupapp/opcua_simulator.py— OPC UA simulator serviceapp/config.yaml— sensor and simulator configurationdocker-compose.yml— multi-service orchestration
Notes
The MCP bridge uses FastMCP from the official mcp package, and the simulator uses opcua to host realistic sensor variables.
For development, run the stack locally and inspect the /health, /sensors, and /cache endpoints for immediate visibility into the OPC UA → MCP workflow.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.