get_cards
Retrieve all tasks from a Focalboard with pagination support to manage and organize your project workflow efficiently.
Instructions
List all cards (tasks) in a board with pagination support.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | The ID of the board to list cards from | |
| page | No | Page number for pagination (default: 0) | |
| perPage | No | Number of cards per page (default: 100) |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "The ID of the board to list cards from",
"type": "string"
},
"page": {
"default": 0,
"description": "Page number for pagination (default: 0)",
"type": "number"
},
"perPage": {
"default": 100,
"description": "Number of cards per page (default: 100)",
"type": "number"
}
},
"required": [
"boardId"
],
"type": "object"
}