AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

N8n Api V1

skill-cuopipyyy-skills-for-agent-n8n-api-v1 · by Cuopipyyy

Operate an n8n instance through the REST API v1. Use when an agent needs to list, inspect, create, update, activate, transfer, or delete workflows; inspect, retry, or delete executions; manage credentials, tags, users, variables, data tables, projects, audit reports, or source control; or craft authenticated curl/Python requests against an n8n API endpoint. Default examples assume `http://localho…

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-cuopipyyy-skills-for-agent-n8n-api-v1

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cuopipyyy-skills-for-agent-n8n-api-v1)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of N8n Api V1? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

n8n API v1

Use this skill when working with n8n over REST API v1. Start from the smallest endpoint set needed for the task, prefer read-only verification before mutation, and keep authentication and destructive operations explicit.

Quick Start

  1. Confirm the base URL and API key before making requests.
  2. Prefer these environment variables:
  • N8N_BASE_URL, default http://localhost:5678/api/v1
  • N8N_API_KEY
  1. Send the API key in header X-N8N-API-KEY.
  2. For list endpoints, handle cursor pagination with limit and cursor.
  3. For destructive operations, identify the exact resource ID first, then perform the write.

Safety Rules

  • Prefer GET requests before POST, PUT, PATCH, or DELETE.
  • Do not delete, transfer, deactivate, or bulk-update resources unless the user asked for it.
  • When mutating resources, restate the target endpoint, target ID, and key payload fields.
  • Avoid exposing credential secrets or tokens in responses.
  • If the base URL, workspace, or auth context is unclear, surface the assumption.

Workflow

Establish request context

  • Read references/endpoint-map.md first for the endpoint family.
  • Read references/api-guide.md only for the sections needed for the current task.
  • Default to the local instance unless the user provides another URL.

Choose the endpoint family

  • Workflows: create, update, activate, deactivate, transfer, tag.
  • Executions: list, inspect, retry, delete, tag.
  • Credentials: list, create, update, transfer, delete, inspect schema.
  • Tags, users, variables, data tables, projects, audit, source control: use the matching section in the references.

Build requests carefully

  • Use the auth header and explicit Content-Type: application/json for JSON bodies.
  • Preserve IDs exactly as returned by n8n.
  • For paginated listings, loop on nextCursor until empty.
  • For bulk or scripted operations, validate with one small request first.

Output Expectations

  • Provide the exact endpoint path and method.
  • Mention required headers, query parameters, and body fields.
  • Prefer curl examples unless the user asked for another language.
  • Mention when a response may be paginated or destructive.

Resources

  • references/endpoint-map.md: compact endpoint map and operating rules.
  • references/api-guide.md: full API v1 guide, examples, and appendix.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.