list_group_projects
Retrieve and filter all projects within a GitLab group, including options for subgroups, sorting, visibility, and pagination. Streamline repository management with precise search and ordering capabilities.
Instructions
List all projects (repositories) within a specific GitLab group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | ||
group_id | No | ||
include_subgroups | No | ||
order_by | No | ||
page | No | ||
per_page | No | ||
search | No | ||
simple | No | ||
sort | No | ||
visibility | No |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"type": "boolean"
},
"group_id": {
"type": "string"
},
"include_subgroups": {
"type": "boolean"
},
"order_by": {
"enum": [
"id",
"name",
"path",
"created_at",
"updated_at",
"last_activity_at"
],
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search": {
"type": "string"
},
"simple": {
"type": "boolean"
},
"sort": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"visibility": {
"enum": [
"public",
"internal",
"private"
],
"type": "string"
}
},
"type": "object"
}