get_users
Retrieve user details from GitLab by providing specific usernames to access profile information and manage team members.
Instructions
Get GitLab user details by usernames
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| usernames | Yes | Array of usernames to search for |
Implementation Reference
- schemas.ts:205-207 (schema)Input schema for the 'get_users' tool. Defines the expected input parameters: an array of usernames to retrieve user information for.export const GetUsersSchema = z.object({ usernames: z.array(z.string()).describe("Array of usernames to search for"), });