跳至主要内容
小龙虾小龙虾AI
🤖

N8n Dispatch

Forwards user requests labeled state, action, or historical with text prompts to a configured n8n_dispatch MCP service and returns its response.

下载2.4k
星标2
版本1.0.0
AI 智能体
安全通过

技能说明

n8n_dispatch Agent Skill

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

  1. The command dispatch takes two required arguments:
    • requestType – one of state, action, or historical.
    • text – the raw user prompt.
  2. The skill builds a JSON payload containing those two values and calls the MCP service n8n_dispatch.
  3. 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 typePromptExample commandWhat 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:

openclaw mcporter add \
  --name "n8n_dispatch" \
  --url "http://your-n8n-host:8080/api"

Once the skill is loaded (openclaw skills load n8n_dispatch), you can start calling dispatch from any OpenClaw session.

如何使用「N8n Dispatch」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「N8n Dispatch技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能