Opcua2mcp
БесплатноНе проверенConverts OPC UA sensor data into MCP-compatible tools and exposes machine health via both HTTP and MCP.
Описание
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.
Установка Opcua2mcp
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/venergiac/iiot-opcua2mcpFAQ
Opcua2mcp MCP бесплатный?
Да, Opcua2mcp MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Opcua2mcp?
Нет, Opcua2mcp работает без API-ключей и переменных окружения.
Opcua2mcp — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Opcua2mcp в Claude Desktop, Claude Code или Cursor?
Открой Opcua2mcp на 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 Opcua2mcp with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
