Skip to main content
Glama

MCP GitLab Server

by Vijay-Duke

gitlab_get_group

Retrieve complete metadata, settings, and statistics for a GitLab group. Include the first page of projects in the group by setting with_projects=true. Use this tool to verify configurations, gather detailed group insights, and count associated projects.

Instructions

Get detailed group information Returns: Complete group metadata, settings, statistics Use when: Need full group details, checking configuration, counting projects Optional: Include first page of projects with with_projects=true

Example response: { "id": 123, "name": "My Group", "full_path": "parent-group/my-group", "description": "Group for team projects", "visibility": "private", "projects_count": 15, "created_at": "2023-01-01T00:00:00Z", "web_url": "https://gitlab.com/groups/my-group" }

Related tools:

  • gitlab_list_groups: Browse available groups
  • gitlab_list_group_projects: List all projects in group

Input Schema

NameRequiredDescriptionDefault
group_idYesGroup identifier Type: integer OR string Format: numeric ID or 'group/subgroup' path Required: Yes Examples: - 456 (numeric ID) - 'my-group' (group path) - 'parent-group/sub-group' (nested group path)
with_projectsNoInclude projects in group response Type: boolean Default: false Options: - true: Include first page of projects - false: Only group metadata Note: Adds project list to response (limited to first 20)

Input Schema (JSON Schema)

{ "properties": { "group_id": { "description": "Group identifier\nType: integer OR string\nFormat: numeric ID or 'group/subgroup' path\nRequired: Yes\nExamples:\n - 456 (numeric ID)\n - 'my-group' (group path)\n - 'parent-group/sub-group' (nested group path)", "type": "string" }, "with_projects": { "default": false, "description": "Include projects in group response\nType: boolean\nDefault: false\nOptions:\n - true: Include first page of projects\n - false: Only group metadata\nNote: Adds project list to response (limited to first 20)", "type": "boolean" } }, "required": [ "group_id" ], "type": "object" }

Other Tools from MCP GitLab Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vijay-Duke/mcp-gitlab'

If you have feedback or need assistance with the MCP directory API, please join our Discord server