New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-red-contrib-mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-mcp

MCP (Model Context Protocol) nodes for Node-RED — connect AI agents to any MCP server

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

node-red-contrib-mcp

The bridge between Node-RED and AI agents

npm downloads Node-RED License Stars

Install · Quick Start · Nodes · AI Agent · Examples

AI agent flow in Node-RED — manufacturing OEE deep analysis using MCP tools
Multi-phase OEE analysis agent built with MCP tool nodes in Node-RED

MCP (Model Context Protocol) is the open standard by Anthropic for connecting AI to external tools and data. This package brings MCP to Node-RED — the world's most popular low-code platform for industrial automation and IoT.

4M+ Node-RED installations meet 10,000+ MCP servers. Build AI agents visually. No code required.

Features

  • Any MCP server — Streamable HTTP and SSE transport, with optional auth
  • Any LLM — OpenAI, Anthropic, Ollama, vLLM, Azure, Gemini, or any OpenAI-compatible API
  • AI Agent node — full agentic loop (tool discovery → LLM reasoning → tool execution → repeat)
  • Zero lock-in — Apache-2.0 license, no cloud dependency, runs fully local
  • Production-ready — error handling, status indicators, configurable timeouts
  • Node-RED native — config nodes, msg passing, debug panel integration

Architecture

┌─────────────────────────────────────────────────────────────────┐
│  Node-RED                                                       │
│                                                                 │
│  [inject] → [mcp tool] → [llm call] → [mcp tool] → [debug]   │
│                                                                 │
│  [inject] → [ai agent] → [debug]    ← autonomous agent loop   │
│                                                                 │
└──────────┬──────────────────────────────────────┬───────────────┘
           │                                      │
           ▼                                      ▼
    ┌──────────────┐                      ┌──────────────┐
    │  MCP Server  │                      │   LLM API    │
    │  (any tool)  │                      │  (any model) │
    └──────────────┘                      └──────────────┘

Install

cd ~/.node-red
npm install node-red-contrib-mcp

Or search for node-red-contrib-mcp in the Palette Manager:

Menu → Manage palette → Install → node-red-contrib-mcp

Nodes

NodeDescription
mcp serverConfig — MCP server connection (URL, transport, API key)
llm configConfig — LLM provider (base URL, model, API key)
mcp toolCall any MCP tool. Pass arguments as msg.payload, tool name in config or msg.topic
mcp toolsList all available tools from an MCP server. Great for discovery and debugging
mcp resourceRead resources exposed by an MCP server
llm callCall any OpenAI-compatible LLM. Supports system prompt, JSON mode, multi-turn chat
ai agentAutonomous agent — LLM + MCP tools in a reasoning loop until it has an answer

Quick Start

1. Call an MCP tool

[inject {"machine": "CNC-001"}] → [mcp tool "get_oee"] → [debug]

2. LLM + MCP pipeline

[inject] → [mcp tool "get_data"] → [llm call "Summarize this"] → [debug]

3. AI Agent (the magic node)

[inject "Why did OEE drop on machine 9014?"] → [ai agent] → [debug]

The agent autonomously discovers tools, reasons about which to call, executes them, and synthesizes a final answer. Same pattern as ChatGPT or Claude — but visual, auditable, and in your Node-RED.

AI Agent

The ai agent node runs a full agentic reasoning loop:

User: "Why did OEE drop on machine 9014 last week?"

  ┌─── Agent Loop ──────────────────────────────────────────┐
  │                                                         │
  │  Step 1: LLM sees 91 tools, picks get_oee              │
  │          → calls MCP server → gets OEE data             │
  │                                                         │
  │  Step 2: LLM analyzes, picks get_downtime_events        │
  │          → calls MCP server → gets 3 events             │
  │                                                         │
  │  Step 3: LLM synthesizes final answer                   │
  │                                                         │
  └─────────────────────────────────────────────────────────┘

Agent: "OEE dropped from 85% to 62% due to 3 unplanned stops:
        bearing failure (47min), tool change delay (23min),
        and material shortage (18min)."

  msg.agentLog = [{tool: "get_oee", ...}, {tool: "get_downtime_events", ...}]
  msg.iterations = 3

Agent settings

SettingDefaultDescription
MCP ServerWhich MCP server to use for tools
LLMWhich LLM provider for reasoning
System PromptAgent personality and instructions
Max Loops10Maximum LLM ↔ tool iterations
Temperature0.3LLM creativity (0 = focused, 1 = creative)

Examples

Import this flow

Copy the JSON below, then in Node-RED: Menu → Import → Paste

Example: MCP Tool Call
[
  {
    "id": "mcp-demo-inject",
    "type": "inject",
    "name": "Trigger",
    "props": [{ "p": "payload" }],
    "payload": "{\"machine_id\": \"CNC-001\"}",
    "payloadType": "json",
    "wires": [["mcp-demo-tool"]],
    "x": 150,
    "y": 100
  },
  {
    "id": "mcp-demo-tool",
    "type": "mcp-tool-call",
    "name": "Get OEE",
    "server": "mcp-demo-server",
    "toolName": "get_oee",
    "wires": [["mcp-demo-debug"]],
    "x": 350,
    "y": 100
  },
  {
    "id": "mcp-demo-debug",
    "type": "debug",
    "name": "Result",
    "active": true,
    "x": 550,
    "y": 100
  },
  {
    "id": "mcp-demo-server",
    "type": "mcp-server-config",
    "name": "My MCP Server",
    "url": "http://localhost:8021/mcp",
    "transportType": "http"
  }
]
Example: AI Agent
[
  {
    "id": "agent-demo-inject",
    "type": "inject",
    "name": "Ask question",
    "props": [{ "p": "payload" }],
    "payload": "What is the current OEE of machine CNC-001 and what are the main loss factors?",
    "payloadType": "str",
    "wires": [["agent-demo-agent"]],
    "x": 170,
    "y": 100
  },
  {
    "id": "agent-demo-agent",
    "type": "ai-agent",
    "name": "Factory Agent",
    "server": "agent-demo-mcp",
    "llmConfig": "agent-demo-llm",
    "systemPrompt": "You are a manufacturing AI assistant. Use the available MCP tools to answer questions about factory operations. Be precise and cite specific numbers.",
    "maxIterations": 10,
    "temperature": 0.3,
    "maxTokens": 4096,
    "wires": [["agent-demo-debug"]],
    "x": 400,
    "y": 100
  },
  {
    "id": "agent-demo-debug",
    "type": "debug",
    "name": "Agent Response",
    "active": true,
    "x": 620,
    "y": 100
  },
  {
    "id": "agent-demo-mcp",
    "type": "mcp-server-config",
    "name": "Factory MCP",
    "url": "http://localhost:8024/mcp",
    "transportType": "http"
  },
  {
    "id": "agent-demo-llm",
    "type": "llm-config",
    "name": "OpenAI",
    "baseUrl": "https://api.openai.com/v1",
    "model": "gpt-4o"
  }
]
Example: MQTT → AI Agent → MQTT (IIoT)
[
  {
    "id": "mqtt-in",
    "type": "mqtt in",
    "name": "machine/alerts",
    "topic": "machine/+/alert",
    "broker": "mqtt-broker",
    "wires": [["mqtt-agent"]],
    "x": 150,
    "y": 100
  },
  {
    "id": "mqtt-agent",
    "type": "ai-agent",
    "name": "Alert Agent",
    "server": "mqtt-mcp-server",
    "llmConfig": "mqtt-llm",
    "systemPrompt": "You are an industrial AI agent. When you receive a machine alert, investigate using MCP tools and recommend an action. Be concise.",
    "maxIterations": 5,
    "wires": [["mqtt-out"]],
    "x": 380,
    "y": 100
  },
  {
    "id": "mqtt-out",
    "type": "mqtt out",
    "name": "machine/actions",
    "topic": "machine/actions",
    "broker": "mqtt-broker",
    "x": 600,
    "y": 100
  }
]

MQTT alert comes in → AI agent investigates via MCP tools → action goes out via MQTT.

Compatible with

MCP Servers

Works with any MCP server that supports Streamable HTTP or SSE transport:

  • OpenShopFloor — 91 manufacturing MCP tools (ERP, OEE, QMS, WMS)
  • Anthropic MCP Servers — filesystem, GitHub, PostgreSQL, Slack, Google Drive, ...
  • Any custom MCP server you build

LLM Providers

Works with any OpenAI-compatible API:

ProviderBase URL
OpenAIhttps://api.openai.com/v1
Ollama (local)http://localhost:11434/v1
Azure OpenAIhttps://YOUR.openai.azure.com/openai/deployments/YOUR_DEPLOYMENT/v1
vLLMhttp://localhost:8000/v1
LiteLLMhttp://localhost:4000/v1
LM Studiohttp://localhost:1234/v1
Anthropicvia LiteLLM proxy

msg Reference

mcp-tool-call

DirectionPropertyTypeDescription
Inputmsg.payloadobjectTool arguments
Inputmsg.topicstringTool name (if not set in config)
Outputmsg.payloadanyTool result (auto-parsed JSON)
Outputmsg.mcpResultobjectRaw MCP response

ai-agent

DirectionPropertyTypeDescription
Inputmsg.payloadstringUser question or task
Outputmsg.payloadstringAgent's final answer
Outputmsg.agentLogarray[{tool, args, result}] for each call
Outputmsg.iterationsnumberTotal LLM reasoning steps

llm-call

DirectionPropertyTypeDescription
Inputmsg.payloadstringUser message
Inputmsg.messagesarrayPrevious conversation (multi-turn)
Inputmsg.toolsarrayOpenAI-format tool definitions
Outputmsg.payloadstringLLM response text
Outputmsg.toolCallsarrayTool calls (if any)
Outputmsg.usageobjectToken usage stats

Configuration

MCP Server (config node)

FieldDescriptionExample
URLMCP server endpointhttp://localhost:3001/mcp
TransportProtocol variantStreamable HTTP (default) or SSE
API KeyOptional Bearer tokensk-...

LLM Provider (config node)

FieldDescriptionExample
Base URLOpenAI-compatible endpointhttps://api.openai.com/v1
ModelModel identifiergpt-4o
API KeyYour API keysk-...

Use Cases

DomainWhat you can build
ManufacturingOEE monitoring, capacity planning, predictive maintenance, quality root cause analysis
IIoTMQTT → AI Agent → MQTT pipelines, sensor data analysis, anomaly detection
Building AutomationSmart energy management, BACnet/Modbus + AI reasoning
IT / DevOpsDatabase agents, log analysis, automated incident response
PrototypingFastest way to prototype agentic AI — visual debugging in Node-RED

Requirements

  • Node-RED >= 3.0.0
  • Node.js >= 18.0.0
  • An MCP server to connect to
  • An LLM API key (for llm-call and ai-agent nodes)

Contributing

Issues and PRs welcome! github.com/BavarianAnalyst/node-red-contrib-mcp

License

Apache-2.0 — use it anywhere, commercially or not.

Built by OpenShopFloor — the open-source AI platform for factory operations

Live Demo · GitHub · Node-RED Flow Library

Keywords

node-red

FAQs

Package last updated on 23 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts