n8n
Installation
SKILL.md
n8n Workflow Management
Manage your n8n automation platform: list workflows, trigger executions, check status, and activate/deactivate workflows.
Setup
Set these environment variables:
N8N_API_URL="https://your-n8n-instance.com" # Base URL (no trailing slash)
N8N_API_KEY="your-api-key-here" # Settings → API → Create API Key
List all workflows
curl -s "$N8N_API_URL/api/v1/workflows" \
-H "X-N8N-API-KEY: $N8N_API_KEY" | jq '.data[] | {id, name, active}'