gitlab_list_projects
Retrieve a list of GitLab projects accessible to the user, filtered by membership, ownership, or search criteria, and manage repository interactions efficiently.
Instructions
List GitLab projects accessible to the user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| membership | No | Limit to projects the current user is a member of | |
| owned | No | Limit to projects explicitly owned by the current user | |
| per_page | No | Number of projects to return per page (max 100) | |
| search | No | Search projects by name |
Input Schema (JSON Schema)
{
"properties": {
"membership": {
"description": "Limit to projects the current user is a member of",
"type": "boolean"
},
"owned": {
"description": "Limit to projects explicitly owned by the current user",
"type": "boolean"
},
"per_page": {
"description": "Number of projects to return per page (max 100)",
"type": "number"
},
"search": {
"description": "Search projects by name",
"type": "string"
}
},
"type": "object"
}