fizzy_search
Search and filter cards in Fizzy kanban boards by tags, assignees, status, text content, and date ranges to find specific tasks.
Instructions
Search for cards with filters. Find cards matching criteria or review board contents.
When to use:
Find cards by tag, assignee, or board
Filter by index category (closed, stalled, golden, etc.)
Don't use when: You already know the card number — use fizzy_get_card instead.
Arguments:
account_slug(optional): Uses session default if omittedboard_id(optional): Filter to cards on this boardindexed_by(optional): Filter by index category: closed | not_now | all | stalled | postponing_soon | goldentag_ids(optional): Filter to cards with ALL these tag IDsassignee_ids(optional): Filter to cards assigned to ANY of these user IDssorted_by(optional): Sort order: newest | oldest | recently_activeterms(optional): Search terms to filter cards by text contentlimit(optional): Max items, 1-100 (default: 25)cursor(optional): Continuation cursor from previous response
Returns: JSON with items and pagination metadata.
Related: Use card number with fizzy_get_card for full details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_slug | No | Account slug (e.g., 'acme-corp'). Uses session default if omitted. | |
| board_id | No | Filter to cards on this board ID. | |
| indexed_by | No | Filter by index category: closed | not_now | all | stalled | postponing_soon | golden. | |
| tag_ids | No | Filter to cards with ALL these tag IDs. | |
| assignee_ids | No | Filter to cards assigned to ANY of these user IDs. | |
| sorted_by | No | Sort order: newest | oldest | recently_active. | |
| terms | No | Search terms to filter cards by text content. | |
| creator_ids | No | Filter to cards created by these user IDs. | |
| closer_ids | No | Filter to cards closed by these user IDs. | |
| card_ids | No | Filter to specific card IDs. | |
| assignment_status | No | Filter by assignment status: unassigned. | |
| creation | No | Filter by creation date range: today | yesterday | thisweek | thismonth | last7 | last14 | last30. | |
| closure | No | Filter by closure date range: today | yesterday | thisweek | thismonth | last7 | last14 | last30. | |
| limit | Yes | Max items to return (1-100, default: 25). | |
| cursor | No | Continuation cursor from previous response. Omit to start fresh. |