cards
Manage individual work items on a Planka board by creating, listing, retrieving, updating, and deleting them.
Instructions
Manage Planka cards. Cards are individual work items on a board.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Card ID (for get, update, delete) or List ID (for list, create) (required for: list, get, update, delete) | |
| data | No | Card data: { name: string, type?: 'project'|'story', listId?: string (for create/move), description?: string, dueDate?: string, isDueCompleted?: boolean, position?: number, stopwatch?: { startedAt: string, total: number } } (required for: create, update) | |
| query | No | Query parameters for filtering/pagination | |
| action | Yes | Action to perform: 'list' - Get cards from a list (requires listId); 'get' - Get card details by ID; 'create' - Create a new card; 'update' - Update card properties; 'delete' - Delete a card |