This skill bridges OpenClaw with your existing n8n‑dispatch service via mcporter. It exposes a single command dispatch that forwards the user’s request type and prompt to the registered MCP service.
How it works
The command dispatch takes two required arguments:
requestType – one of state, action, or historical.
text – the raw user prompt.
The skill builds a JSON payload containing those two values and calls the MCP service n8n_dispatch.
The n8n workflow receives the payload, processes the request, and returns a response that OpenClaw prints.
Usage
# In your OpenClaw session or a shell
n8n_dispatch dispatch state "What is the living room light status?"
The command will output something like: Requested type: state and text: What is the living room light status?
Examples
Request type
Prompt
Example command
What the service returns
state
“Is the garage door open?”
n8n_dispatch dispatch state "Is the garage door open?"
“Garage door is closed”
action
“Turn on the hallway light.”
n8n_dispatch dispatch action "Turn on the hallway light."
“Hallway light turned on”
historical
“Show me the temperature for yesterday.”
n8n_dispatch dispatch historical "Show me the temperature for yesterday."
Yesterday’s temperature: 72°F
Configuration
Place this skill in your workspace under skills/n8n_dispatch and ensure your MCP service is registered:
Once the skill is loaded (openclaw skills load n8n_dispatch), you can start calling dispatch from any OpenClaw session.
1---2name: n8n-dispatch3description: n8n_dispatch Agent Skill4---5# n8n_dispatch Agent Skill67This skill bridges OpenClaw with your existing n8n‑dispatch service via mcporter. It exposes a single command `dispatch` that forwards the user’s request type and prompt to the registered MCP service.89## How it works10111. The command `dispatch` takes two required arguments:12 * `requestType` – one of `state`, `action`, or `historical`.13 * `text` – the raw user prompt.142. The skill builds a JSON payload containing those two values and calls the MCP service `n8n_dispatch`.153. The n8n workflow receives the payload, processes the request, and returns a response that OpenClaw prints.1617## Usage1819```bash20# In your OpenClaw session or a shell21n8n_dispatch dispatch state "What is the living room light status?"22```2324The command will output something like: `Requested type: state and text: What is the living room light status?`2526## Examples2728| Request type | Prompt | Example command | What the service returns |29|--------------|--------|------------------|--------------------------|30| `state` | *“Is the garage door open?”* | `n8n_dispatch dispatch state "Is the garage door open?"` | *“Garage door is closed”* |31| `action` | *“Turn on the hallway light.”* | `n8n_dispatch dispatch action "Turn on the hallway light."` | *“Hallway light turned on”* |32| `historical` | *“Show me the temperature for yesterday.”* | `n8n_dispatch dispatch historical "Show me the temperature for yesterday."` | *Yesterday’s temperature: 72°F* |3334## Configuration3536Place this skill in your workspace under `skills/n8n_dispatch` and ensure your MCP service is registered:3738```bash39openclaw mcporter add \40 --name "n8n_dispatch" \41 --url "http://your-n8n-host:8080/api"42```4344Once the skill is loaded (`openclaw skills load n8n_dispatch`), you can start calling `dispatch` from any OpenClaw session.
Run npx skillmds@latest add kernel8901/n8n-dispatch in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
n8n_dispatch Agent Skill It is listed under AI & ML on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
kernel8901 (@kernel8901) published this skill. Their other Agent Skills are listed on their SkillMD profile.