paperclip_list_routines
Retrieve all routines for your company in a paginated list. Use it to find routine IDs before adding triggers or checking routine status.
Instructions
List all routines defined for the current company.
Returns: Pagination envelope { items: Routine[], total, count, offset, limit, has_more, next_offset }. Each item: id, name, agentId, concurrencyPolicy, catchUpPolicy, createdAt.
Examples:
Use when: finding routineIds before adding a trigger or checking routine status
Don't use when: you need a specific routine's triggers and run history — use paperclip_get_routine instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
403: permission denied → verify PAPERCLIP_COMPANY_ID is correct
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | Yes | Max routines per page (1–100, default 50) | |
| offset | Yes | Number of routines to skip (default 0) | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |