nr-mcp
Lets AI assistants interact with Node-RED to read flows, search nodes, edit function code, deploy changes safely, and manage modules.
README
nr-mcp
<!-- mcp-name: io.github.Texan-NXTassist/nr-mcp -->
A Model Context Protocol (MCP) server that lets AI assistants interact with Node-RED — read flows, search nodes, edit function code, deploy changes safely, and manage modules.
Built to solve real problems: the existing Node-RED MCP implementations use PUT /flow/:id which reorders your tabs. nr-mcp uses the correct GET → POST /flows pattern with optimistic locking, so your tab order is always preserved.
Features
13 tools for complete Node-RED flow management:
| Tool | Description |
|---|---|
nr_get_flow_summary |
Overview of all tabs with node counts and groups |
nr_get_flow |
Get a single tab with all nodes — by name or ID |
nr_search_nodes |
Search nodes by name, type, or JavaScript code content |
nr_get_function_code |
Extract full JS code from function nodes (incl. init/finalize) |
nr_get_node_config |
Full config with computed upstream/downstream connections |
nr_get_flow_context |
Read flow-level context variables |
nr_safe_deploy |
Deploy changes with optimistic locking — never reorders tabs |
nr_create_nodes |
Batch-create nodes/groups in a single deploy |
nr_delete_nodes |
Batch-delete with automatic wire and group cleanup |
nr_inject |
Trigger inject nodes remotely to test flows |
nr_get_installed_modules |
List installed modules and available node types |
nr_install_module |
Install npm packages from the Node-RED registry |
nr_get_debug_output |
Read debug/error data from flow context |
Why not just use the existing MCP servers?
- Tab reorder bug: Other implementations use
PUT /flow/:idwhich silently reorders your tabs in Node-RED. nr-mcp uses the correctGET → POST /flowsfull-deploy pattern. - Optimistic locking: Every deploy checks the
revfield. If someone else deployed between your read and write, you get a clear conflict error instead of silent data loss. - Smart search: Search across node names, types, function code, templates, and actions in one call.
- Production-tested: Built and used daily for managing complex Node-RED installations (home automation, IoT, energy management).
Installation
Prerequisites
Install from PyPI
pip install nr-mcp
Install with uv (recommended)
uv tool install nr-mcp
Or from source:
git clone https://github.com/Texan-NXTassist/nr-mcp.git
cd nr-mcp
uv tool install .
This creates the nr-mcp command in ~/.local/bin/.
Configuration
Environment variables
| Variable | Required | Description |
|---|---|---|
NR_URL |
No | Node-RED URL (default: http://localhost:1880) |
NR_TOKEN |
No* | Bearer token for token-based auth |
NR_USER |
No* | Username for Basic Auth |
NR_PASS |
No* | Password for Basic Auth |
* At least one auth method is recommended. Auth is checked in order: token → basic auth → no auth.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nr-mcp": {
"command": "nr-mcp",
"env": {
"NR_URL": "http://localhost:1880",
"NR_USER": "admin",
"NR_PASS": "your-password"
}
}
}
}
Tip: If you get a "working directory" error, create a wrapper script:
#!/bin/bash cd /tmp exec nr-mcp "$@"Then point
commandto the wrapper path.
Cursor / VS Code
Add to your MCP settings (.cursor/mcp.json or VS Code equivalent):
{
"mcpServers": {
"nr-mcp": {
"command": "nr-mcp",
"env": {
"NR_URL": "http://localhost:1880",
"NR_TOKEN": "your-access-token"
}
}
}
}
Usage examples
Once connected, you can ask your AI assistant things like:
- "Show me all Node-RED tabs and their node counts"
- "Search for nodes that contain 'mqtt' in their code"
- "Show me the function code for node abc123"
- "Update the function code in node xyz to add error handling"
- "Create an inject node and an HTTP request node on the Weather tab"
- "What modules are installed? Is node-red-dashboard available?"
- "Install node-red-contrib-influxdb"
- "Trigger the 'Test' inject node and check for errors"
Architecture
nr-mcp is a Python MCP server that communicates with Node-RED via its Admin API. It uses stdio transport (standard for MCP) and makes HTTP calls to your Node-RED instance.
AI Assistant ↔ MCP (stdio) ↔ nr-mcp ↔ HTTP ↔ Node-RED Admin API
Key design decisions
- GET→POST pattern: All deploys fetch full flows, modify in-place, then POST back. Never uses
PUT /flow/:idwhich reorders tabs. - Optimistic locking: Uses the Node-RED
revfield to detect concurrent modifications. - No caching: Every tool call fetches fresh data. Slightly slower, but always correct.
- Single retry on conflict: Deploy operations retry once on 409 Conflict.
For more details, see docs/ARCHITECTURE.md.
Node-RED setup
The Admin API must be enabled (it is by default). If you've restricted it, ensure these endpoints are accessible:
GET /flowsandPOST /flows— flow read/writeGET /context/flow/:id— flow contextPOST /inject/:id— inject triggerGET /nodesandPOST /nodes— module management
See Node-RED Admin API docs for auth configuration.
Contributing
Contributions welcome! Please open an issue first to discuss what you'd like to change.
git clone https://github.com/Texan-NXTassist/nr-mcp.git
cd nr-mcp
uv venv && source .venv/bin/activate
uv pip install -e .
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。