node-red-mcp
Provides tools for managing Node-RED flows, including getting, creating, updating, enabling, disabling flows, as well as searching and installing modules.
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., "@node-red-mcpshow me my current flows"
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.
🚀 MCP Node-RED Server
A modern, production-ready Model Context Protocol (MCP) server for Node-RED integration.
🌟 Features
🔧 20 MCP Tools
Full CRUD for flows, context variables, modules, and diagnostics — plus semantic search and real-time error detection.
📚 Prompts Library
Built-in prompt templates: debug_flow, explain_automation, audit_security,
document_flow.
📦 MCP Resources
Browse Node-RED state as structured resources: nodered://flows,
nodered://subflows, nodered://nodes, nodered://context/global,
flow://<id>, system://runtime.
🔍 Semantic Search
Embeddings-based search across flows and nodes via semantic_search_flows.
Finds by meaning, not just keywords.
🧠 Elicitation
The server asks clarifying questions mid-call when required parameters are missing (MCP SDK 1.24+ elicitation).
🚨 Real-time Error Detection
get_node_errors connects to Node-RED's WebSocket /comms endpoint to detect
nodes in error/warning state in real time.
Related MCP server: MCP Server for n8n Integration
📋 Table of Contents
⚡ Quick Start
Prerequisites
Node.js 22+ (LTS recommended)
Yarn 4.x (automatically managed via Corepack)
Docker (optional, for containerized setup)
Native Installation
git clone https://github.com/ziv-daniel/node-red-mcp.git
cd node-red-mcp
yarn install
yarn buildDocker
docker run -e NODERED_URL=http://your-nodered:1880 \
-e NODERED_USERNAME=admin \
-e NODERED_PASSWORD=password \
-p 3000:3000 \
ghcr.io/ziv-daniel/node-red-mcp:latest🔧 Available MCP Tools
Flow Management
Tool | Description | Key Parameters |
| List flows (summary or full) |
|
| Get a specific flow |
|
| Create a new flow |
|
| Update an existing flow |
|
| Enable a flow |
|
| Disable a flow |
|
| Delete a flow (dry-run by default) |
|
| Validate flow structure |
|
| Search nodes by type/name/property |
|
| Embeddings-based semantic search |
|
Context Variables
Tool | Description | Key Parameters |
| Read global or flow context |
|
| Write a context variable |
|
| Delete a context variable |
|
Modules
Tool | Description | Key Parameters |
| Search Node-RED palette |
|
| Install a module |
|
| List installed modules | — |
Diagnostics
Tool | Description | Key Parameters |
| Detect nodes in error/warning state (WebSocket) |
|
| Get flow runtime state (started/stopped) | — |
| Get Node-RED runtime settings | — |
| Get Node-RED version and system info | — |
🔒 Read-Only Mode
Set MCP_READ_ONLY=true to structurally prevent any mutation of your Node-RED
flows — useful when exposing this server to remote AI agents where an accidental
or unintended write to a live/production instance is a real risk.
When enabled, write tools (create_flow, update_flow, delete_flow,
enable_flow, disable_flow, set_context, delete_context,
install_module) are removed from the tool list entirely — clients never see
them as available capabilities — and are also rejected if called directly by
name. All read, search, diagnostic, resource, and prompt capabilities remain
fully available. This pairs naturally with delete_flow's existing dryRun
default for deployments that need read/write in the same session but still want
an extra layer of protection against accidental writes.
📦 MCP Resources
Access Node-RED state as browseable MCP resources:
URI | Description |
| All tab flows (summary) |
| All subflows |
| Installed node modules |
| Global context variables |
| Full detail for a specific flow |
| Node-RED runtime info |
📚 MCP Prompts
Built-in prompt templates for common tasks:
Prompt | Description |
| Diagnose errors in a specific flow |
| Explain what a flow does in plain language |
| Security audit of flow configurations |
| Generate documentation for a flow |
🔌 Connecting to the Server
Transport Modes
Mode | Env Var | Endpoint | Use Case |
Streamable HTTP |
|
| Production, remote agents |
Stdio |
| stdin/stdout | Claude Desktop |
Authentication
Set MCP_USERNAME and MCP_PASSWORD for HTTP Basic Auth on the /mcp
endpoint.
Claude Desktop (stdio)
{
"mcpServers": {
"nodered": {
"command": "node",
"args": ["path/to/node-red-mcp/dist/index.mjs"],
"env": {
"MCP_TRANSPORT": "stdio",
"NODERED_URL": "https://your-nodered-instance.com",
"NODERED_USERNAME": "admin",
"NODERED_PASSWORD": "password"
}
}
}
}Claude Code / Remote Agent (HTTP)
claude mcp add node-red \
--transport streamable-http \
--url https://<your-server>/mcp \
--header "Authorization: Basic <base64-credentials>"⚙️ Environment Variables
Variable | Required | Default | Description |
| Yes | — | URL of your Node-RED instance |
| No | — | Node-RED admin username |
| No | — | Node-RED admin password |
| No |
|
|
| No | — | MCP server auth username |
| No | — | MCP server auth password |
| No |
| Set |
| No |
| Bind address |
| No |
| Listen port |
| No |
|
|
| No |
| Set |
| No |
| Reverse proxy hops to trust — see Running Behind a Reverse Proxy |
| No |
| Model for semantic search |
Running Behind a Reverse Proxy
Express ignores X-Forwarded-For unless you tell it which proxies to trust.
Left unset behind a proxy, every client resolves to the proxy's own address and
shares a single rate-limit bucket. TRUST_PROXY sets Express's trust proxy:
Value | Meaning |
unset, empty, or | Don't trust |
| Recommended. Number of proxy hops in front of this server |
| Trust |
| Trust specific addresses or CIDR ranges |
| Comma-separated — any combination of the above |
| Trust every hop. Works, but not recommended — see the warning below |
Use the hop count wherever you can: TRUST_PROXY=1 for a single Traefik, nginx
or Caddy in front, TRUST_PROXY=2 for something like Traefik in front of
Pomerium. Count the proxies that actually append to X-Forwarded-For.
TRUST_PROXY=true is accepted, but the server logs a warning on startup and
express-rate-limit reports it as ERR_ERL_PERMISSIVE_TRUST_PROXY. Trusting
every hop means any client can spoof its address — and so its rate-limit bucket
— just by sending its own X-Forwarded-For header. Prefer a hop count or an
explicit trust list.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that enables AI assistants to interact with n8n workflows through natural language, supporting actions like listing, creating, updating, executing and monitoring workflows.2241,637MIT
- FlicenseNot gradedqualityNot gradedmaintenanceA Model Context Protocol server that enables AI agents to interact with n8n workflows and automation tools through a standardized interface, allowing execution of workflows and access to n8n functions.-
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that allows AI agents to interact with n8n workflows through natural language, enabling workflow management and execution via SSE connections.2007MIT
- AlicenseDqualityFmaintenanceModel Context Protocol (MCP) server for Node-RED — allows language models (like Claude, GPT) to interact with Node-RED through a standardized API.2046139MIT
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/ziv-daniel/node-red-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server