list-issues
Retrieve and filter project issues from Plane.so by project ID, with options to sort by state, priority, assignee, or pagination.
Instructions
List issues from a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee_id | No | Filter by assignee ID (optional) | |
| cursor | No | Pagination cursor in format 'value:offset:is_prev' (optional) | |
| per_page | No | Number of items per page (default: 100, max: 100) | |
| priority | No | Filter by priority (optional) | |
| project_id | Yes | ID of the project to get issues from | |
| state_id | No | Filter by state ID (optional) |
Input Schema (JSON Schema)
{
"properties": {
"assignee_id": {
"description": "Filter by assignee ID (optional)",
"type": "string"
},
"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"
},
"priority": {
"description": "Filter by priority (optional)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project to get issues from",
"type": "string"
},
"state_id": {
"description": "Filter by state ID (optional)",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}