list_organization_projects
Retrieve all projects within a GitHub organization, filtering by state and enabling pagination for efficient project management and organization-wide oversight.
Instructions
List all projects in a GitHub organization (at organization level, not repository level)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
org | Yes | Organization name | |
page | No | Page number for pagination | |
per_page | No | Number of results per page (max 100) | |
state | No | Filter projects by state |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"org": {
"description": "Organization name",
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"per_page": {
"description": "Number of results per page (max 100)",
"type": "number"
},
"state": {
"description": "Filter projects by state",
"enum": [
"open",
"closed",
"all"
],
"type": "string"
}
},
"required": [
"org"
],
"type": "object"
}