n8n

n8n is a skill for Claude Code, Codex from ericrisco/rsc-harness. It costs 99 tokens per session (2,856 once invoked), scanned B, original, MIT.

An operations guide for n8n, a tool for connecting services through visual workflows, using its API or an MCP server.

In plain words
What is it for?
Use it to upload, validate, test, activate, update, inspect, and remove n8n workflows and their execution records.
Why use it?
It helps manage workflows on a live n8n installation without manually performing every deployment and testing step in the interface.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to upload, validate, test, activate, update, inspect, and remove n8n workflows and their execution records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ericrisco/rsc-harness/n8n
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ericrisco/rsc-harness --skill n8n
Clone the repo
git clone --depth 1 https://github.com/ericrisco/rsc-harness

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for n8n

README.md
[![agentmods](https://agentmods.dev/badge/skills/ericrisco/rsc-harness/n8n.svg)](https://agentmods.dev/skills/ericrisco/rsc-harness/n8n)
Your own site
<a href="https://agentmods.dev/skills/ericrisco/rsc-harness/n8n"><img src="https://agentmods.dev/badge/skills/ericrisco/rsc-harness/n8n.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,856 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 64
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00099 $0.02856
Opus 5 $0.00049 $0.01428
Sonnet 5 $0.00020 $0.00571
Haiku 4.5 $0.00010 $0.00286

Measured 4d ago against content hash 4efac4d30422, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

n8n scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -sS -X POST "$N8N_API_URL/webhook-test/my-path" -H "Content-Type: application/json" -d '{"foo":"bar"}'

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

create → **validate** → test → **activate** → manage → delete. A concrete sketch per step, curl and
skills/n8n/SKILL.md · 178 lines

How it starts

The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.

n8n — operate a live instance over its REST API and MCP

You already have a workflow design — the trigger→steps→error shape and the importable JSON, which is automation-flows' job and this skill does not re-teach it. This skill is the operate half: push that JSON into a running n8n, validate it, test it, flip it live, watch its executions, and tear it down safely — all without touching the UI. n8n has the richest programmatic story of the no-code platforms: a first-party REST API plus a mature MCP server, both hitting the same instance.

Connect first — REST API vs MCP

Two ways to drive the same instance. Pick by who is at the wheel.

Public REST API n8n-mcp (czlonkowski, de-facto standard)
What it is n8n's own HTTP API at {host}/api/v1 MCP server wrapping that API + offline node/expression knowledge
Best for scripts, CI/CD, deterministic deploys, no extra dependency an agent (Claude) building/fixing workflows in the loop — it can look up node schemas, then validate/autofix before it writes
Auth API key in header X-N8N-API-KEY management tools need N8N_API_URL + N8N_API_KEY; node-knowledge tools need no auth
Surface identical on self-host and *.app.n8n.cloud same underlying API; hosted trial at dashboard.n8n-mcp.com

Version reality (verify at author time — n8n moves fast):

  • API base is {host}/api/v1. Self-host ships interactive Swagger at /api/v1/docs; cloud does not — on cloud, work from the docs.
  • POST /workflows/{id}/execute (run-by-id) is recent (n8n PR #20234). Older instances lack it — there, the only programmatic run is POSTing to a Webhook node's URL.

.env

# host root only — you append /api/v1 for REST; n8n-mcp reads it whole
N8N_API_URL=https://your-instance.app.n8n.cloud   # or N8N_HOST for self-host, e.g. http://localhost:5678
N8N_API_KEY=n8n_api_...                            # Settings → n8n API → Create an API key

Read the full file on GitHub · 178 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 178 lines · 99 tokens per session scan B 4efac4d30422

Subscribe to this mod's changes

n8n is a skill published in the GitHub repository ericrisco/rsc-harness (70 stars, last pushed today), licensed MIT. It adds 99 tokens to every session and 2,856 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

starting-a-new-project

Use when the workspace is empty — no code yet — and the user brings a raw idea: the brand-new branch of setting-up-a-project, normally reached via that dispatcher, directly only when the situation is unmistakable. Not for features in an existing project — use brainstorming instead.

JetBrains/thinkrail · 61 tokens

swarm-plan

Full execution protocol for MODE: PLAN -- plan creation, external plan ingestion, QA gate persistence, task granularity, and traceability checks.

ZaxbyHub/opencode-swarm · 32 tokens

loop

Full execution protocol for MODE: LOOP — the compound-engineering loop: brainstorm → plan → build → review → improve, iterating under defense-in-depth stop conditions with generator/critic separation, durable resumable state, and mandatory compounding learning capture. Loaded on demand by the architect when the loop…

ZaxbyHub/opencode-swarm · 72 tokens

parallel-work-check

Apply before starting work on an existing branch. Checks for parallel work by other agents or developers that may supersede or conflict with your planned changes. Prevents wasted effort on stale branches.

ZaxbyHub/opencode-swarm · 41 tokens

file-a-task

File work into nohuman (taskadd) and check on it (taskstatus) via the nohuman MCP bridge, instead of doing the work inline.

no-human-ai/no_human · 37 tokens

issue-ingest

Full execution protocol for MODE: ISSUEINGEST -- GitHub issue intake, localization, spec generation, and transition to the full fix workflow.

ZaxbyHub/opencode-swarm · 33 tokens