n8n_list_credentials
Retrieve metadata for all n8n credentials without exposing sensitive secrets. Returns IDs, names, types, and sharing info. Requires admin privileges.
Instructions
List credentials via GET /credentials. Returns metadata only — n8n's API explicitly excludes the data field (the encrypted secrets). Each row: {id, name, type (e.g. 'githubApi'), createdAt, updatedAt, shared[]}. Read-only. Requires the API user to be an instance owner or admin — non-admin keys get 401 with a clear hint. The tool defensively strips any data field that might appear in a future regression.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max credentials returned (default 100). | |
| cursor | No | Pagination cursor from a previous call's `nextCursor`. |