nodered-mcp
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., "@nodered-mcplist my 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.
nodered-mcp
A Python MCP server for Node-RED flow management, built on FastMCP and Pydantic.
Gives language models full read/write access to a Node-RED instance through the Admin HTTP API, with structured Pydantic responses, incremental flow patching, layout linting, and flexible authentication (token, basic, OAuth2).
Compared to node-red-mcp-server
This project was inspired by karavaev-evgeniy/node-red-mcp-server (TypeScript/npm). Key differences:
node-red-mcp-server (TS) | nodered-mcp (Python) | |
Runtime | Node.js / npm | Python 3.11+ / uv |
Framework | Custom MCP SDK | FastMCP |
Responses | Raw JSON strings | Typed Pydantic models |
Auth | Token only | Token, Basic, OAuth2 |
Deployment types |
|
|
Flow mutations | Replace entire flow |
|
Layout checks | None |
|
Auto-lint | N/A |
|
Tool count | 19 | 22 |
Related MCP server: n8n-MCP
Installation
Requires Python 3.11+ and uv:
git clone <repo-url> && cd nodered-mcp
uv syncQuick Start
# Minimal — token auth (default)
export NODE_RED_URL=http://localhost:1880
export NODE_RED_TOKEN=your-api-token
uv run nodered-mcpConfiguration
All configuration is via environment variables with the NODE_RED_ prefix.
Variable | Default | Description |
|
| Node-RED instance URL |
|
| Bearer token (for |
|
| API version header |
|
| Auth method: |
|
| Username for |
|
| Password/app password for |
|
| OAuth2 token endpoint URL |
|
| OAuth2 client ID |
Authentication
Token (default)
Static bearer token sent with every request. This is the simplest method and matches how node-red-mcp-server works:
NODE_RED_URL=http://localhost:1880
NODE_RED_TOKEN=your-api-tokenBasic Auth
HTTP Basic authentication, useful when Node-RED sits behind a forward auth proxy.
NODE_RED_AUTH_METHOD=basic
NODE_RED_AUTH_USERNAME=admin
NODE_RED_AUTH_PASSWORD=your-passwordBasic Auth with Authentik
If your Node-RED instance sits behind Authentik as a forward auth proxy, the basic auth method works well. Authentik intercepts requests, validates credentials, and sets session cookies before forwarding to Node-RED.
Create an Authentik application for your Node-RED instance using the Forward Auth (single application) provider.
Configure your reverse proxy (Traefik, nginx, Caddy) to use Authentik's forward auth endpoint. For example, with Traefik:
# docker-compose.yml (Traefik labels on the Node-RED service) labels: - "traefik.http.routers.nodered.middlewares=authentik@docker"Create an Authentik service account (or use an existing user) and generate an app password under the user's token settings. This avoids MFA prompts that would block API access.
Configure nodered-mcp:
NODE_RED_URL=https://nodered.yourdomain.com NODE_RED_AUTH_METHOD=basic NODE_RED_AUTH_USERNAME=service-account NODE_RED_AUTH_PASSWORD=the-app-password-from-authentik
The basic auth credentials are sent to Authentik's proxy, which validates them and sets cookies. Subsequent requests use the session cookie, so Node-RED itself doesn't need auth enabled.
OAuth2 Client Credentials
Fetches a short-lived JWT via OAuth2 client credentials grant. The token is cached and auto-refreshed with a 30-second expiry buffer. On a 401 response, the server retries once with a fresh token.
Works with Authentik out of the box — every application has a token endpoint and client_id:
NODE_RED_AUTH_METHOD=oauth
NODE_RED_AUTH_USERNAME=service-account
NODE_RED_AUTH_PASSWORD=service-password
NODE_RED_OAUTH_TOKEN_URL=https://auth.yourdomain.com/application/o/token/
NODE_RED_OAUTH_CLIENT_ID=your-client-idMCP Client Configuration
Claude Desktop
{
"mcpServers": {
"nodered": {
"command": "uv",
"args": ["--directory", "/path/to/nodered-mcp", "run", "nodered-mcp"],
"env": {
"NODE_RED_URL": "http://localhost:1880",
"NODE_RED_TOKEN": "your-token"
}
}
}
}Claude Code
{
"mcpServers": {
"nodered": {
"command": "uv",
"args": ["--directory", "/path/to/nodered-mcp", "run", "nodered-mcp"],
"env": {
"NODE_RED_URL": "http://localhost:1880",
"NODE_RED_TOKEN": "your-token"
}
}
}
}Tools
Flow Tools (12)
Tool | Description |
| Get all flows with summary statistics |
| Replace all flows with deployment type control ( |
| Get a single flow by ID |
| Update a single flow (auto-lints after save) |
| List all flow tabs (workspaces) |
| Create a new flow tab |
| Delete a flow tab |
| Get runtime state (started/stopped) |
| Start or stop the flow runtime |
| Get flows grouped by tabs/nodes/subflows with statistics |
| Markdown-formatted per-tab structural overview |
| Incremental operations: |
Node Tools (6)
Tool | Description |
| Trigger an inject node |
| List installed node modules |
| Detailed info about a node module |
| Enable or disable a node module |
| Find all nodes of a given type |
| Search nodes by name or any property |
Layout Tools (1)
Tool | Description |
| Check a flow for node overlaps, insufficient spacing, and wire-through-node crossings. Optionally scoped to specific node IDs. |
Settings Tools (2)
Tool | Description |
| Get Node-RED runtime settings |
| Get runtime diagnostics (Node.js version, OS, modules) |
Utility Tools (1)
Tool | Description |
| Node-RED Admin API endpoint reference |
Architecture
src/nodered_mcp/
├── server.py # FastMCP server, config, client init
├── config.py # Pydantic Settings (env vars)
├── client.py # Async httpx wrapper with auth
├── models/
│ ├── base.py # BaseApiModel with from_api()
│ ├── flow.py # Node, FlowTab, Flow, FlowState
│ ├── node.py # NodeModule, NodeSet
│ ├── responses.py # FlowList, FlowSummary, Settings, etc.
│ └── layout.py # LayoutIssue, LayoutReport
└── tools/
├── flows.py # Flow CRUD + patch + auto-lint
├── nodes.py # Node management + search
├── layout.py # Layout lint checks
├── settings.py # Settings + diagnostics
└── utility.py # API help referenceThe layer diagram is simple:
MCP Tools (thin async functions, return Pydantic models)
↓
NodeRedClient (async httpx, returns raw dicts)
↓
Node-RED Admin HTTP APIDevelopment
make all # format + lint + test
make check # lint + test (no format)
make test # uv run pytest tests/ -v
make lint # uv run ruff check src/ tests/
make format # uv run ruff format src/ tests/Run a single test file:
uv run pytest tests/tools/test_layout.py -vRun with coverage:
uv run pytest tests/ -v --cov=src/nodered_mcp --cov-report=term-missingAlways use uv run — never bare python or pytest.
See conventions.md for detailed code patterns (model layering, tool conventions, client architecture).
License
MIT
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.
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/ylt/nodered-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server