GitLab

Integrate GitLab with your AI workspace

A web-based DevOps lifecycle tool that provides a Git repository manager providing wiki, issue-tracking, and CI/CD pipeline features.

Explore Triggers and Actions

Add Spent Time

Adds spent time to a GitLab issue for time tracking purposes. This action logs time against an issue, accumulating with any previously logged time. Use this action when you need to record time spent working on an issue, track billable hours, or maintain project time logs.

ActionTry it

Approve Merge Request

Approves a merge request in a GitLab project. Use this action when you need to record an approval from the authenticated user on a specific merge request. The authenticated user must be an eligible approver with appropriate permissions. Note that this action is idempotent — calling it multiple times on the same merge request will not create duplicate approvals.

ActionTry it

Archive Project

Tool to archive a project. Use when you need to mark a project read-only after finishing active development. Call after confirming no further changes are required.

ActionTry it

Cancel Job

Cancel a GitLab CI/CD job within a specified project. This action stops a running or pending job and is irreversible. Use this action when you need to cancel a job that is running, pending, or stuck in a canceling state. The optional force parameter allows cancellation of jobs that are in a canceling state. Once canceled, the job cannot be restarted.

ActionTry it

Cancel Pipeline

Tool to cancel a running pipeline in a GitLab project. Use this action when you need to stop a CI/CD pipeline that is currently executing or queued. Note that the API returns success (200) regardless of the pipeline's state, so this action can be safely called even if the pipeline has already finished or been canceled.

ActionTry it

Create Commit

Creates a new commit with multiple file operations in a GitLab project. This action supports batch operations including creating, updating, deleting, moving files, and changing file permissions in a single atomic commit. Use this action when you need to perform multiple file changes at once or when you need to commit changes to a GitLab repository programmatically. Note: Commits over 20 MB are rate-limited to 3 requests per 30 seconds, and commits over 300 MB are rejected.

ActionTry it

Create Commit Comment

Posts a comment to a specific commit in a GitLab project repository. Use this action when you need to provide feedback, review notes, or discussion on a particular commit. Line-specific comments require both path and line parameters; if invalid, the comment is placed at the commit level.

ActionTry it

Create GitLab Group

Tool to create a new group in GitLab. Use when you need to establish a new group for projects or collaboration.

ActionTry it

Create Issue Note

Creates a new note (comment) on a project issue in GitLab. Use this action when you need to add a comment, provide feedback, or document information on an existing issue.

ActionTry it

Create Label

Creates a new label for a GitLab project with specified name, color, and optional attributes. Use this action when you need to create a new label for organizing issues and merge requests within a project. Labels help categorize and filter project items, making project management more efficient.

ActionTry it

Create Merge Request

Creates a new merge request in a GitLab project to propose changes from a source branch into a target branch. Use this action when you need to create a merge request for code review, feature integration, or bug fixes. This action requires both the source and target branches to exist in the project.

ActionTry it

Create Milestone

Creates a new milestone in a GitLab project. Milestones track progress towards a goal with a start date, due date, and associated issues. Use this action when you need to establish a new project milestone for organizing work, tracking release schedules, or planning sprints.

ActionTry it

Create Pipeline

Tool to create a new pipeline for a specific branch or tag in a GitLab project. Use when you need to manually trigger a CI/CD pipeline run, optionally passing variables or inputs. For merge request pipelines, use the dedicated merge requests endpoint instead.

ActionTry it

Create Project

Tool to create a new project in GitLab. Implements POST /projects endpoint.

ActionTry it

Create Project Issue

Tool to create a new issue in a GitLab project. Use when you need to report a bug, request a feature, or track a task within a specific project.

ActionTry it

Create Project Webhook

Creates a new webhook (project hook) for a GitLab project to receive real-time event notifications. Use this action when you need to set up automated integrations that respond to GitLab events like pushes, merge requests, issues, or CI/CD pipeline activities. Configure which events trigger the webhook by enabling the appropriate event flags. The webhook will send POST requests to your specified URL whenever the configured events occur.

ActionTry it

Create Repository Branch

Tool to create a new branch in a project. Use when you need to create a new branch from an existing branch or a specific commit in a GitLab project.

ActionTry it

Create Repository File

Creates a new file in a GitLab repository at the specified path with the given content. Use this action when you need to add a new file to a repository branch with a commit message.

ActionTry it

Create Support PIN

Tool to create a support PIN for your authenticated user. Use when GitLab Support requests a PIN to verify your identity.

ActionTry it

Delete Group

Deletes a GitLab group by its ID or URL-encoded path. Use this action when you need to remove a group entirely. This action is irreversible — the group cannot be recovered once permanently removed. On GitLab.com, groups are retained for 30 days before permanent deletion unless permanently_remove=true is specified. You must have Owner permissions on the group to delete it.

ActionTry it

Delete Issue Note

Deletes a note (comment) from an issue in a GitLab project. Use this action when you need to remove a specific comment from an issue. This action is irreversible — the note cannot be recovered once deleted.

ActionTry it

Delete Label

Deletes a label from a GitLab project by its ID or title. Use this action when you need to remove a label from a project permanently. This action is irreversible — the label cannot be recovered once deleted.

ActionTry it

Delete Merge Request

Tool to permanently delete a merge request from a GitLab project. Use when you need to remove a merge request entirely, though closing is typically preferred to preserve the discussion history and audit trail. This action is irreversible — the merge request and its associated data cannot be recovered once deleted.

ActionTry it

Delete Milestone

Deletes a project milestone by its ID. Use when you need to permanently remove a milestone from a project. This action is irreversible — the milestone cannot be recovered once deleted. Requires at minimum the Planner role for the project.

ActionTry it

Delete Pipeline

Tool to delete a CI/CD pipeline by its ID within a specified project. This action expires all pipeline caches and deletes all immediately related objects such as builds, logs, artifacts, and triggers. This action is irreversible — the pipeline cannot be recovered once deleted. Use when you need to permanently remove a pipeline and all its associated data.

ActionTry it

Delete Project

Tool to delete a GitLab project by its ID. Use when you need to remove a project, either by marking it for later deletion or deleting it immediately.

ActionTry it

Delete Repository Branch

Tool to delete a branch from a GitLab project repository. Use when you need to remove a branch that is no longer needed. This action is irreversible — the branch cannot be recovered once deleted. Cannot delete default or protected branches.

ActionTry it

Delete Repository File

Deletes a file from a GitLab repository by creating a new commit. Use this action when you need to remove a file from a project's repository on a specific branch. This action is irreversible — the file will be removed from the specified branch, though it remains in the git history and can be recovered from previous commits.

ActionTry it

Delete Webhook

Deletes a project webhook/hook permanently from a GitLab project, removing the integration and stopping all event notifications. Use this action when you need to remove a webhook that is no longer needed or to clean up unused integrations. This action is irreversible — the webhook cannot be recovered once deleted.

ActionTry it

Download Project Avatar

Tool to download a project's avatar image. Use when you need the raw avatar bytes after confirming the project exists.

ActionTry it

Erase Job

Tool to erase the content of a specified job within a project. Use when you need to remove job artifacts and logs.

ActionTry it

Fork Project

Forks a GitLab project to a specified namespace or the current user's namespace. Creates an independent copy of the project that maintains a relationship with the source. Use this action when you need to create a personal or team copy of a project for development, experimentation, or contribution workflows.

ActionTry it

Get Any User's Status by ID

Tool to get a user's status by ID. Use when you need to retrieve a GitLab user's current status message, emoji, and availability after identifying their user ID.

ActionTry it

Get Commit References

Tool to get all references (branches or tags) a commit is pushed to. Use when you need to find out which branches or tags a specific commit belongs to in a GitLab project.

ActionTry it

Get Commit Sequence

Tool to get the sequence number of a commit in a project by following parent links from the given commit. Use when you need to determine the order of a commit in the project's history.

ActionTry it

Get Current User

Retrieves information about the currently authenticated user. Use this action when you need to get details about the user who owns the authentication token, such as their profile information, permissions, and settings.

ActionTry it

Get Group Details

Tool to retrieve information about a specific group by its ID. Use when you need to get details of a GitLab group.

ActionTry it

Get Group Member

Tool to retrieve details for a specific group member. Use when you need to fetch membership information for a user in a group after you know both group ID and user ID.

ActionTry it

Get Groups

Get Groups

ActionTry it

Get Issue

Retrieves a single issue from a GitLab project by its internal ID (iid). Returns comprehensive issue details including description, state, labels, assignees, time tracking, and task status. Use this action when you need to inspect a specific issue's current state, check its metadata, or retrieve detailed information before performing updates or analysis. Requires knowing both the project ID/path and the issue's internal ID.

ActionTry it

Get Issue Note

Retrieves a single comment (note) from a GitLab issue by its ID. Use this action when you need to fetch the details of a specific note on an issue, including its content, author information, and metadata.

ActionTry it

Get Issue Time Stats

Retrieves time tracking statistics for a specific issue in a project. Returns both machine-readable values (in seconds) and human-readable formatted durations. Use this action when you need to check time estimates, logged time, or track progress on an issue's time budget.

ActionTry it

Get Job Details

Tool to retrieve details of a single job by its ID within a specified project. Use this when you need to fetch specific information about a particular CI/CD job.

ActionTry it

Get Job Trace

Retrieves the trace (log output) for a specific CI/CD job within a project. Use this action when you need to view the execution logs of a job to debug failures, check output, or monitor job progress. The trace contains the complete console output from the job execution.

ActionTry it

Get Merge Request Commits

Tool to get commits of a merge request. Use when you need to retrieve all commits associated with a specific merge request.

ActionTry it

Get Merge Request Notes

Tool to fetch comments on a merge request. Use when you need to retrieve all notes for a specific merge request.

ActionTry it

Get Milestone

Retrieves a single milestone by its ID for a specific project. Returns detailed information including title, description, dates, and state. Use when you need to fetch complete details about a specific milestone.

ActionTry it

Get Project

Tool to get a single project by ID or URL-encoded path.

ActionTry it

Get Project Label

Retrieves a single project label by its ID or title. Use this action when you need to fetch details about a specific label within a GitLab project, such as its color, description, or associated issue/MR counts.

ActionTry it

Get Project Languages

Tool to list programming languages used in a project with percentages. Use when you need the project language breakdown.

ActionTry it

Get Project Member

Tool to retrieve details for a specific project member. Use after confirming project and user IDs to fetch membership information for a project member.

ActionTry it

Get Project Member All

Tool to retrieve details for a specific project member (including inherited and invited members). Use when you need the effective membership info (including invitations and inheritance).

ActionTry it

Get Project Merge Request

Tool to fetch full details for a single merge request when the MR IID is known. Use when you need to retrieve canonical metadata, description, state, branches, authors, and approval-related fields for a specific merge request.

ActionTry it

Get Project Merge Requests

Tool to retrieve a list of merge requests for a specific project. Use when you need to get all merge requests associated with a project, with options to filter by state, labels, milestones, and other attributes.

ActionTry it

Get Projects

Tool to list all projects accessible to the authenticated user. Supports filtering. Private or group projects may be silently omitted if the token lacks sufficient scopes or group membership.

ActionTry it

Get Raw File

Retrieves the raw contents of a file from a GitLab repository without Base64 encoding. Use this action when you need to read the actual file content directly from a repository. Unlike the standard file retrieval endpoint, this returns unencoded file content.

ActionTry it

Get Repository Branch

Tool to retrieve information about a specific branch in a project. Use when you need to get details for a single branch.

ActionTry it

Get Repository Branches

Retrieves a list of repository branches for a project. Use this when you need to get all branches or search for specific branches within a GitLab project.

ActionTry it

Get Repository File

Retrieves a single file from a GitLab repository at a specific ref (branch, tag, or commit). Returns the file content as base64-encoded data along with metadata like size, encoding, and commit information. Use this action when you need to fetch the contents or details of a specific file from a GitLab project repository.

ActionTry it

Get Single Commit

Tool to get a specific commit identified by the commit hash or name of a branch or tag. Use this when you need to retrieve detailed information about a single commit in a GitLab project repository.

ActionTry it

Get Single Pipeline

Tool to retrieve details of a single pipeline by its ID within a specified project. Use when you need to get information about a specific CI/CD pipeline.

ActionTry it

Get User

Tool to retrieve information about a specific user by their ID. Use when you need to fetch details for a single GitLab user.

ActionTry it

Get User Preferences

Tool to get the current user's preferences. Use when you need to retrieve the user's diff display and CI identity JWT settings after authentication.

ActionTry it

Get User Status

Tool to get the current user's status. Use when displaying or verifying the authenticated user's GitLab status after login.

ActionTry it

Get User Support PIN

Tool to get details of the current user's Support PIN. Use when you need to retrieve the active support PIN and its expiration for the authenticated user.

ActionTry it

Get Users

Tool to retrieve a list of users from GitLab. Use this when you need to find user information, search for specific users, or filter users based on various criteria like activity status or creation date.

ActionTry it

Get Webhook

Retrieves detailed information about a specific project webhook by its ID. Use this action when you need to inspect a webhook's configuration, including its URL, enabled event triggers, SSL verification settings, and authentication details. This is useful for verifying webhook configurations or before updating webhook settings.

ActionTry it

Import project members

Tool to import members from one project to another. Use when migrating members between projects.

ActionTry it

List All Group Members

Tool to list all members of a group including direct, inherited, and invited members. Use when you need a comprehensive membership list beyond direct members.

ActionTry it

List All Project Members

Tool to list all members of a project (direct, inherited, invited). Use when you need the effective membership list including inherited and invited members.

ActionTry it

List Billable Group Members

Tool to list billable members of a top-level group (including its subgroups and projects). Use when generating billing reports; requires Owner role on the group.

ActionTry it

List Commit Comments

Retrieves all comments associated with a specific commit in a GitLab project. Use this action when you need to view discussions or feedback left on a particular commit, including both general comments and inline code review comments.

ActionTry it

List Group Members

Tool to list direct members of a group. Use when you need to retrieve or filter a group's direct membership.

ActionTry it

List Group Projects

Tool to list projects within a GitLab group by group ID or full path. Use when discovering projects under a namespace or subgroup.

ActionTry it

List Issue Notes

Retrieves all notes (comments and activity) for a specific project issue in GitLab. Use this action when you need to view the discussion history, comments, or activity log on an issue to understand the context or follow up on conversations. Results are paginated and can be filtered by activity type or sorted by creation/update time.

ActionTry it

List Labels

Lists all labels for a project with optional filtering by name, archived status, and ancestor inclusion. Use this action when you need to retrieve available labels for a project to categorize issues or merge requests, or to check which labels exist before assigning them.

ActionTry it

List Merge Request Diff Versions

Tool to list all diff versions of a merge request. Use when you need to inspect changes across different diff versions after creating or updating a merge request.

ActionTry it

List Merge Requests

Retrieves a list of merge requests from across all accessible projects based on scope and filters. Use this action when you need to query merge requests at the instance or user level (not scoped to a specific project), such as finding all merge requests created by a user, assigned to a user, or awaiting review. By default returns merge requests created by the authenticated user; use scope=all to retrieve all accessible merge requests.

ActionTry it

List Pending Group Members

Tool to list pending members of a group and its subgroups and projects. Use when you need to review users awaiting approval or invited without an account. Call after confirming the top-level group ID.

ActionTry it

List Pipeline Jobs

Tool to retrieve a list of jobs for a specified pipeline within a project. Use this when you need to inspect the status or details of jobs associated with a particular CI/CD pipeline.

ActionTry it

List Project Groups

Tool to list ancestor groups of a project. Use when you need to retrieve all groups a project belongs to or is shared with.

ActionTry it

List Project Invited Groups

Tool to list groups invited to a project. Use when auditing which groups have access to a project.

ActionTry it

List Project Issues

Tool to list issues for a project with filtering options (state, labels, search, assignee, author, etc.). Use when you need to browse, filter, or triage project issues to confirm IIDs or decide what to update/close.

ActionTry it

List Project Milestones

Lists all milestones for a specific project with optional filtering by state, title, or search terms. Use this action when you need to view project milestones, check milestone progress, or find a specific milestone by title or IID before creating or updating issues.

ActionTry it

List Project Pipelines

Tool to retrieve a list of pipelines for a specified project. Use when you need to get information about CI/CD pipelines, such as their status, source, or creation/update times.

ActionTry it

List Project Repository Tags

Tool to retrieve a list of repository tags for a specified project. Use when you need to get all tags associated with a project in GitLab.

ActionTry it

List Project Shareable Groups

Tool to list groups that can be shared with a project. Use before sharing a project to fetch eligible groups.

ActionTry it

List Project Transfer Locations

Tool to list namespaces available for project transfer. Use when you need to determine which groups a project can be transferred into.

ActionTry it

List project users

Tool to list users of a project. Use after you have a project ID and want to retrieve its users.

ActionTry it

List Repository Commits

Tool to get a list of repository commits in a project. Use when you need to retrieve commit history for a specific project, branch, or time range.

ActionTry it

List User Projects

Tool to list projects owned by a specific user. Use after obtaining target user identity to fetch owned projects.

ActionTry it

List Webhooks

Tool to list all webhooks configured for a GitLab project. Returns webhook configurations including URLs, event triggers, and SSL settings. Use when you need to view existing webhooks for a project, audit webhook configurations, or check which events are being monitored. Webhook secret tokens are redacted from the response.

ActionTry it

Move Issue

Moves an issue from one project to another in GitLab. The issue receives a new IID and project_id in the destination project. Use this action when you need to relocate an issue to a different project, such as when reorganizing work or transferring issues between team projects. If equivalent labels or milestones exist in the destination project, they are automatically assigned to the moved issue.

ActionTry it

Play Job

Triggers execution of a manual job in a GitLab project. Use this action when you need to start or run a job that requires manual intervention or has a manual status.

ActionTry it

Protect Branch

Protects a repository branch in a GitLab project by setting access controls for push, merge, and unprotect operations. Use this action when you need to enforce branch protection rules to prevent unauthorized modifications or deletions of important branches like main, master, or release branches. Protected branches can restrict who can push, merge, force push, and remove protection.

ActionTry it

Reset Spent Time

Resets the total spent time for a specified GitLab issue to 0 seconds. This action is irreversible — all previously recorded time entries will be cleared and cannot be recovered. Use this action when you need to clear all time tracking entries for an issue and start time tracking from scratch.

ActionTry it

Reset Time Estimate

Resets the estimated time for a specified issue to 0 seconds. Use this action when you need to clear a previously set time estimate on an issue while preserving the total time spent.

ActionTry it

Retry Pipeline

Retries failed or canceled jobs in a pipeline. Use this action when you need to re-run a pipeline that has failed or was canceled. Note that if there are no failed or canceled jobs in the pipeline, calling this action has no effect.

ActionTry it

Set Time Estimate

Sets the estimated time to complete an issue in a GitLab project. Use this action when you need to set or update the time estimate for tracking project work. The estimate is specified in human-readable format like '3h30m' for 3 hours and 30 minutes.

ActionTry it

Set User Status

Tool to set the current user's status. Use when you need to update availability or convey current mood on GitLab.

ActionTry it

Share Project With Group

Tool to share a project with a group. Use when you need to grant a group specific access level to a project.

ActionTry it

Star Project

Stars a project in GitLab, marking it as a favorite for the authenticated user. This adds the project to your starred projects list and increments its star count. Use this action when you want to bookmark or show support for a project. The operation is idempotent - starring an already-starred project succeeds without error.

ActionTry it

Start Housekeeping Task

Tool to start the housekeeping task for a project. Use when you need to trigger manual maintenance or pruning on a repository.

ActionTry it

Unapprove Merge Request

Removes the approval from the currently authenticated user for a specified merge request. Use this action when you need to revoke your previously given approval on a merge request. The action requires the merge request to have been previously approved by the authenticated user.

ActionTry it

Unprotect Branch

Tool to remove protection from a branch in a GitLab project. Use this action when you need to unprotect a branch, allowing unrestricted push and merge access. This action is irreversible in the sense that protection rules must be manually reapplied if needed later.

ActionTry it

Unstar Project

Unstar a previously starred GitLab project to remove it from your favorites list. Use this action when you need to remove a project from your starred projects. This action removes the star that was previously added by the authenticated user.

ActionTry it

Update GitLab Group

Updates an existing GitLab group's settings and properties. Use this action when you need to modify group configuration such as name, path, visibility, permissions, or feature settings. Administrators can update additional settings like shared runners limits and IP restrictions.

ActionTry it

Update Issue Note

Updates an existing note (comment) on a GitLab issue. Use this action when you need to edit the content of a previously created comment on an issue. This is useful for correcting typos, adding additional information, or updating outdated information in issue discussions.

ActionTry it

Update Label

Updates an existing label in a GitLab project by modifying its name, color, description, priority, or archived status. At least one of new_name or color must be provided to perform the update. Use this action when you need to rename a label, change its appearance, update its description, adjust its priority, or archive/unarchive it.

ActionTry it

Update Merge Request

Updates an existing merge request in a GitLab project (title, description, assignees, reviewers, labels, state, etc.). Use this action when you need to modify merge request details, manage assignees/reviewers, update labels, close/reopen merge requests, or configure merge settings like squash or auto-removal of source branch. This action is idempotent and can be called multiple times with the same parameters.

ActionTry it

Update Milestone

Updates an existing milestone in a GitLab project, allowing you to modify the title, description, dates, or state. Use this action when you need to change milestone details, adjust deadlines, or close/reopen a milestone.

ActionTry it

Update Project Issue

Tool to update an existing issue in a GitLab project (title, description, labels, assignees, state, etc.). Use when you need to modify issue details, close/reopen issues, or manage labels and assignments.

ActionTry it

Update Repository File

Updates an existing file in a GitLab repository. Commits the changes to the specified branch with the provided commit message. Use this action when you need to modify file contents, change file permissions, or update files in a specific branch. Note that if concurrent modifications occur (detected via last_commit_id), the update will fail.

ActionTry it

Update User Preferences

Tool to update the current user's preferences. Use when adjusting default diff viewing and CI identity settings.

ActionTry it

Update Webhook

Updates an existing project webhook configuration including URL, event triggers, SSL verification, and authentication token. Use this action when you need to modify a webhook's endpoint, change which events trigger notifications, update security settings, or rotate the authentication token. This operation is idempotent and overwrites the specified settings.

ActionTry it

Validate Credential

Validates the authentication credentials by retrieving the currently authenticated user's information. Use this action when you need to verify that the API token or credentials are valid and active. Returns the authenticated user's profile details if credentials are valid.

ActionTry it
GitLab integration | Dench