gitlab_list_groups
Retrieve and manage GitLab groups by listing them based on ownership or search criteria using the GitLab MCP Server for streamlined group administration.
Instructions
List GitLab groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owned | No | Limit to groups explicitly owned by the current user | |
| search | No | Search groups by name |
Input Schema (JSON Schema)
{
"properties": {
"owned": {
"description": "Limit to groups explicitly owned by the current user",
"type": "boolean"
},
"search": {
"description": "Search groups by name",
"type": "string"
}
},
"type": "object"
}