# n8n List

> Overview and inspect n8n workflows, executions, and credentials

- Skill: `cs-workx/n8n-list` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add cs-workx/n8n-list`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cs-workx/n8n-list/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: CS-Workx (https://skillmd.com/u/cs-workx)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/cs-workx/n8n-list

---


# n8n Overview

List and inspect workflows, executions, and credentials on your n8n instance at `your-n8n-instance.example.com`.

## Commands

### List Workflows (default)
```
n8n API → GET /workflows?limit=100
```

Present as a **datatable** with columns:
- Name
- Active (boolean)
- Updated At (date)
- Tags
- ID

### Filter Workflows
- Active only: `GET /workflows?active=true`
- By tag: `GET /workflows?tags=production`
- By name: `GET /workflows?name=keyword`

### Inspect a Workflow
When the user wants details on a specific workflow:
```
n8n API → GET /workflows/{id}
```

Show:
- Name and description
- Active status
- Node list with types and connections
- A mermaid diagram of the workflow flow
- URL: `https://your-n8n-instance.example.com/workflow/{id}`

### Recent Executions
```
n8n API → GET /executions?limit=20
```

Present as a datatable:
- Workflow Name
- Status (badge: success/error/waiting)
- Started At
- Finished At
- Mode (manual/trigger/webhook)

### Credentials
```
n8n API → GET /credentials
```

List available credentials (names and types only — secrets are never exposed).

## Visualization

When inspecting a workflow, generate a **mermaid flowchart** showing the node connections:

```mermaid
graph LR
    Webhook --> IF{Check Condition}
    IF -->|true| Slack[Send Slack Message]
    IF -->|false| Email[Send Email]
```

Use node names from the workflow and indicate branch conditions where applicable.

