n8n-api-bridge

Read and update n8n workflows via REST API with sticky-note merges.

84|23|Updated May 6, 2026
One-click install
npx skills add https://github.com/MorrisLu-Taipei/TigerAI-n8n-Skill-Pack --skill n8n-api-bridge
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: n8n-api-bridge
Source: https://github.com/MorrisLu-Taipei/TigerAI-n8n-Skill-Pack/tree/main/skills/tigerai/n8n-api-bridge
Command: npx skills add https://github.com/MorrisLu-Taipei/TigerAI-n8n-Skill-Pack --skill n8n-api-bridge

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It standardizes how you read existing n8n workflows, generate updated workflow JSON, and safely write the result back to n8n using only the REST API—without overwriting the user’s Layer 1 sticky note.

Core Features & Use Cases

  • Workflow read/write bridge: list workflows, fetch a workflow by ID, and push back updated nodes/connections/settings through REST endpoints.
  • Three-layer sticky-note merge: preserve user Layer 1 (color=4) while replacing or inserting AI-generated Layer 2 and Layer 3 (color=5) content.
  • Production guardrails: enforce idempotency checks (prompt before overwriting Layer 3), activate/deactivate workflows after updates, and avoid unsafe direct SQL modifications.

Quick Start

Provide your workflow ID (or link), tell the assistant to deploy the updated workflow, and ensure N8N_API_URL and N8N_API_KEY are set so the skill can fetch, merge, write back, and activate it.

Frequently Asked Questions about n8n-api-bridge

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I update and deploy n8n workflows via REST API?

To update and deploy n8n workflows via REST API, you fetch the workflow JSON, modify the nodes and connections, and push the updated definitions back through n8n's REST endpoints. This requires setting the N8N_API_URL and N8N_API_KEY headers.

How does the three-layer sticky-note merge work when writing workflows back to n8n?

The three-layer sticky-note merge preserves your original Layer 1 sticky notes (color=4) while replacing or inserting AI-generated Layer 2 and Layer 3 (color=5) content into the workflow JSON before pushing it back to n8n via REST API.

Can I activate or deactivate n8n workflows automatically after pushing updates?

Yes, you can activate or deactivate n8n workflows by ID or URL after pushing updates. The bridge enforces idempotency checks and prompts before overwriting Layer 3 content to ensure safe write and activate behavior through REST endpoints.

Do I need direct database access to modify n8n workflow JSON?

No, you do not need direct database access to modify n8n workflow JSON. The bridge avoids unsafe direct SQL modifications by exclusively using n8n's REST API to fetch, merge, and write back workflow definitions securely.

What are the limitations of using REST API to manage n8n workflow deployment?

Limitations of using the REST API for n8n workflow deployment include requiring valid N8N_API_URL and N8N_API_KEY headers for all calls. Additionally, the system enforces idempotency checks and prompts before overwriting Layer 3 sticky notes to prevent data loss.

Is n8n-api-bridge suitable for listing and reading existing workflows in production?

Yes, n8n-api-bridge is suitable for listing and reading existing workflows in production. It fetches workflows by ID or URL through REST endpoints and applies production guardrails like idempotency checks and safe write behavior to ensure reliable deployment.