# Send N8n Dispatch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "n8n-dispatch",
    "name": "N8n Dispatch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "canonicalUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/n8n-dispatch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-dispatch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "commands.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "n8n-dispatch",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T23:01:21.685Z",
      "expiresAt": "2026-05-12T23:01:21.685Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-dispatch",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-dispatch",
        "contentDisposition": "attachment; filename=\"n8n-dispatch-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "n8n-dispatch"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/n8n-dispatch"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/n8n-dispatch",
    "downloadUrl": "https://openagent3.xyz/downloads/n8n-dispatch",
    "agentUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent.md"
  }
}
```
## Documentation

### 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

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 typePromptExample commandWhat the service returnsstate“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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: enchantedmotorcycle
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T23:01:21.685Z
- Expires at: 2026-05-12T23:01:21.685Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/n8n-dispatch)
- [Send to Agent page](https://openagent3.xyz/skills/n8n-dispatch/agent)
- [JSON manifest](https://openagent3.xyz/skills/n8n-dispatch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/n8n-dispatch/agent.md)
- [Download page](https://openagent3.xyz/downloads/n8n-dispatch)