list-modules
Retrieve all sprints (modules) from a specified Plane project with pagination support to manage large datasets effectively.
Instructions
List all modules (sprints) in a project with optional pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor in format 'value:offset:is_prev' (optional) | |
| per_page | No | Number of items per page (default: 100, max: 100) | |
| project_id | Yes | ID of the project to get modules from |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor in format 'value:offset:is_prev' (optional)",
"type": "string"
},
"per_page": {
"description": "Number of items per page (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"project_id": {
"description": "ID of the project to get modules from",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}