Files
nexus/wiki/entities/n8n.md
2026-05-03 05:42:12 +08:00

35 lines
941 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "n8n"
type: entity
tags: []
---
## Overview
n8n 是一个开源工作流自动化平台,通过 HTTP Request 节点连接多个 AI Agent包括 Hermes Agent 和 OpenClaw Agent实现统一的自动化工作流编排。
## Key Facts
- **类型**:开源工作流自动化平台(可自托管)
- **集成方式**HTTP Request 节点
- **连接架构**
- POST `http://<lan-ip>:8642` → Hermes Agent
- POST `http://<lan-ip>:18789/v1/chat/completions` → OpenClaw Agent
- **认证方式**Bearer Token`Authorization: Bearer <secret-key>`
## n8n 调用 OpenClaw 的配置
- **URL**`http://192.168.3.189:18789/v1/chat/completions`
- **Method**POST
- **Body**
```json
{
"model": "openclaw:main",
"messages": [
{"role": "user", "content": "{{ $json.input }}"}
]
}
```
## Related Pages
- [[n8n-调用openclaw-agents的工作流架构]]
- [[OpenClaw]]
- [[Hermes-Agent]]