paperclip_list_goals
Retrieve a paginated list of company goals to find the goal ID for linking to issues or projects.
Instructions
List all goals for the current company.
Args:
limit: integer (optional) — Max goals per page, 1–100 (default 50)
offset: integer (optional) — Skip N goals for pagination (default 0)
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Pagination envelope { items: Goal[], total, count, offset, limit, has_more, next_offset } with up to 50 goals per page (default, max 100).
Examples:
Use when: finding the goalId to link when creating a new issue or project
Don't use when: you need a single goal's full details — use paperclip_get_goal 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 goals to return per page (1–100, default 50) | |
| offset | Yes | Number of goals to skip (default 0) | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |