paperclip_get_goal
Fetch a single goal by UUID to view its status and linked projects, helping you verify details before creating an issue.
Instructions
Get a single goal by UUID, including its status and linked projects.
Args:
goalId: string — Goal UUID (example: "gol_abc123")
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Goal object: id, title, description, status, level, parentId, linkedProjects[], createdAt.
Examples:
Use when: reading a goal's current status or linked projects before creating an issue under it
Don't use when: you need a list of goals — use paperclip_list_goals to discover IDs first
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: goal not found → verify ID with paperclip_list_goals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goalId | Yes | Goal UUID | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |