gitlab_get_group
Retrieve detailed information about a specific GitLab group by providing its ID or URL-encoded path. This tool is part of the GitLab MCP Server, enabling efficient group management and operations.
Instructions
Get details of a specific 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"
}