gitlab_list_group_members
Retrieve a list of members associated with a specific GitLab group by providing the group ID or path. Facilitates user management and access control within the GitLab MCP Server.
Instructions
List members of a group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_id | Yes | The ID or URL-encoded path of the group |
Input Schema (JSON Schema)
{
"properties": {
"group_id": {
"description": "The ID or URL-encoded path of the group",
"type": "string"
}
},
"required": [
"group_id"
],
"type": "object"
}