list-projects
Retrieve all projects from your Plane workspace with pagination support to manage large project lists efficiently.
Instructions
List all projects in the workspace 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) |
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"
}
},
"required": [],
"type": "object"
}