Gitlab

SkillSearch

Agent-callable GitLab tools — manage issues and merge requests, review diffs, commit files, run pipelines, and search. Use when the user mentions GitLab or wants to review or merge an MR, commit code, run CI, or manage issues — even if they don't name GitLab explicitly.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Gitlab skill

What this skill tells your AI

The instructions your AI receives, as published by zapier/connectors in apps/gitlab/SKILL.md and read by ahel’s review.

Agent-callable tools for GitLab, the DevOps platform for source code, merge requests, and CI/CD. The connector wraps the GitLab REST API v4 (with one GraphQL island — the Work Items surface — reached through POST /api/graphql), giving an agent the ability to read and drive projects, issues, merge requests, repository contents, and pipelines. It is centered on the merge-request review loop and repository authoring: read an MR and its diffs and discussions, comment or approve, commit file changes atomically, and run or inspect CI. It targets GitLab SaaS (gitlab.com) by default; the host is configurable for self-managed and GitLab Dedicated instances.

Independent, unofficial connector for Gitlab. Not affiliated with, endorsed by, or sponsored by Gitlab. "Gitlab" is a trademark of its owner, used only to identify the service this connector works with.

When to use this

  • An agent needs to drive the merge-request review loop: list and read MRs, fetch their diffs, commits, notes, and threaded discussions, comment inline on a diff line, approve or unapprove, and merge.
  • An agent needs to author repository changes: create a branch, commit many files in one atomic commit, read files and the repository tree, list commits, and compare two refs.
  • An agent needs to manage issues (REST): create, update, comment on, and close/reopen them — or manage work items like epics, tasks, and objectives (GraphQL): create, update, and close/reopen.
  • An agent needs to run and inspect CI/CD: trigger, list, get, retry, or cancel pipelines; list jobs, read a job log, and play a manual job.
  • An agent needs to search — globally, within a project, or within a group — across issues, merge requests, code, commits, users, and more, and resolve project, user, label, and milestone ids before writing.

Setup

This is an agentskills.io skill.

If the connector has not been installed as a skill yet, install it first with npx skills add zapier/connectors --skill gitlab (or your harness's own skill-install mechanism), then continue here. Installing the skill copies these files, not dependencies. Before running the CLI, a local MCP server, or zapier-sdk auth commands, run npm install --omit=dev here once. Importing the published package as a dependency in your own project instead? That npm install already resolves everything — see references/use-as-sdk.md.

Want the actual repo source instead — to browse references/, run this connector's tests, or hack on it? See README.md for a scoped git clone.

The connector runs on Node.js 22.18+. Pick the reference that matches how you're running it, and load it before doing anything else:

You have...Load
An MCP-aware client — tools may already be loaded (e.g. mcp__gitlab__<tool>), or you can register a local server yourself (or guide the user to)references/use-as-mcp.md
Terminal / subprocess access (you can run node)references/use-as-cli.md
Only your own code, importing this package as a dependencyreferences/use-as-sdk.md
No tool access, no terminal, no ability to import this package — you write your own code that calls the Gitlab API directly (e.g. a code-execution sandbox)references/use-as-recipe.md

Scripts

All 47 scripts use the single connection gitlab. Project-scoped tools take a projectId (numeric id or URL-encoded group/project path); issues and MRs are addressed by their project-scoped iid, not the global id. The script's inputSchema / outputSchema (Zod) inside the file is the source of truth for its contract.

Projects & search

ScriptScript nameConnectionsDescription
scripts/listProjects.tslistProjectsgitlabList or search projects the token can see (resolves projectId).
scripts/getProject.tsgetProjectgitlabGet one project's metadata by id or path (incl. default_branch).
scripts/search.tssearchgitlabSearch globally across projects, issues, MRs, milestones, users, code, or commits.
scripts/searchProject.tssearchProjectgitlabSearch within one project across issues, MRs, milestones, users, code, or commits.
scripts/searchGroup.tssearchGroupgitlabSearch within one group across projects, issues, MRs, milestones, users, code, or commits.

Issues

ScriptScript nameConnectionsDescription
scripts/listIssues.tslistIssuesgitlabList issues in a project, filterable by state, labels, assignee, or milestone.
scripts/getIssue.tsgetIssuegitlabGet one issue including its full markdown description.
scripts/createIssue.tscreateIssuegitlabOpen a new issue with a markdown description.
scripts/updateIssue.tsupdateIssuegitlabUpdate an issue's fields, or close/reopen it.
scripts/addIssueComment.tsaddIssueCommentgitlabAdd a comment (note) to an issue.

Merge requests

ScriptScript nameConnectionsDescription
scripts/listMergeRequests.tslistMergeRequestsgitlabList MRs assigned to or created by the token identity across all projects (global).
scripts/listProjectMergeRequests.tslistProjectMergeRequestsgitlabList merge requests in one project.
scripts/listGroupMergeRequests.tslistGroupMergeRequestsgitlabList merge requests across all projects in one group.
scripts/getMergeRequest.tsgetMergeRequestgitlabGet one merge request's full detail (the entry point to the review loop).
scripts/createMergeRequest.tscreateMergeRequestgitlabOpen a merge request from a source branch into a target branch.
scripts/updateMergeRequest.tsupdateMergeRequestgitlabUpdate an MR's fields, or close/reopen it.
scripts/mergeMergeRequest.tsmergeMergeRequestgitlabMerge a merge request (optionally squash, or guard with a head sha).
scripts/approveMergeRequest.tsapproveMergeRequestgitlabApprove (or revoke approval on) a merge request.
scripts/getMergeRequestDiffs.tsgetMergeRequestDiffsgitlabGet the paginated file diffs for a merge request.
scripts/listMergeRequestCommits.tslistMergeRequestCommitsgitlabList the commits on a merge request.
scripts/listMergeRequestNotes.tslistMergeRequestNotesgitlabList the comments (notes) on a merge request.
scripts/addMergeRequestComment.tsaddMergeRequestCommentgitlabAdd a top-level comment (note) to a merge request.
scripts/addMergeRequestDiffComment.tsaddMergeRequestDiffCommentgitlabAdd a review comment pinned to a specific line of an MR diff.
scripts/listMergeRequestDiscussions.tslistMergeRequestDiscussionsgitlabList discussion threads on an MR, incl. diff notes and resolved/resolvable status.

Repository

ScriptScript nameConnectionsDescription
scripts/listBranches.tslistBranchesgitlabList (or search) a project's branches.
scripts/createBranch.tscreateBranchgitlabCreate a branch from an existing ref (ref is required — no silent default).
scripts/commitFiles.tscommitFilesgitlabCreate, update, delete, or move multiple files in a single atomic commit.
scripts/listCommits.tslistCommitsgitlabList commits on a branch or across the repository.
scripts/getFile.tsgetFilegitlabRead a file's contents at a ref.
scripts/listRepositoryTree.tslistRepositoryTreegitlabList files and directories in a repository path.
scripts/compareRefs.tscompareRefsgitlabCompare two refs and return the diff between them.

CI/CD

ScriptScript nameConnectionsDescription
scripts/triggerPipeline.tstriggerPipelinegitlabRun a new pipeline on a ref, with optional CI/CD variables.
scripts/listPipelines.tslistPipelinesgitlabList pipelines for a project, filterable by ref or status.
scripts/getPipeline.tsgetPipelinegitlabGet one pipeline's status and metadata.
scripts/listPipelineJobs.tslistPipelineJobsgitlabList the jobs in a pipeline.
scripts/getJobLog.tsgetJobLoggitlabGet the log (trace) output of a CI job.
scripts/retryPipeline.tsretryPipelinegitlabRetry the failed and canceled jobs in a pipeline, keeping the passed ones.
scripts/cancelPipeline.tscancelPipelinegitlabCancel a running pipeline, stopping its in-progress and pending jobs.
scripts/playJob.tsplayJobgitlabStart a manual job waiting on a manual action (a play button).

Work items (GraphQL)

ScriptScript nameConnectionsDescription
scripts/listWorkItems.tslistWorkItemsgitlabList work items in a project or group, filterable by type and state.
scripts/getWorkItem.tsgetWorkItemgitlabGet one work item's full detail including its description and type.
scripts/createWorkItem.tscreateWorkItemgitlabCreate a work item (epic, task, objective, etc.) in a project or group.
scripts/updateWorkItem.tsupdateWorkItemgitlabUpdate a work item's fields, or close/reopen it.

Metadata & resolvers

ScriptScript nameConnectionsDescription
scripts/listLabels.tslistLabelsgitlabList a project's labels (resolves valid label names).
scripts/listMilestones.tslistMilestonesgitlabList a project's milestones (resolves milestone_id).
scripts/getCurrentUser.tsgetCurrentUsergitlabGet the identity of the authenticated token (also the connection test).
scripts/findUsers.tsfindUsersgitlabFind users by username or search term (resolves assignee/reviewer ids).

Disambiguation & refusals

This connector resolves names to ids, then writes. Two situations trip up an action-biased agent — handle both before you write.

Before writing to a record you looked up by name — count how many returned records match the name the user gave exactly (case-insensitive). This applies to projects looked up by path/name via listProjects, users looked up by username via findUsers, and labels or milestones via listLabels / listMilestones:

  • One exact match (even among other fuzzy hits) → use it. Don't ask for confirmation you don't need.
  • No exact match but one clear fuzzy hit → use it.
  • Two or more that tie (two projects both pathed .../api, two users both named "Jordan Lee", two labels both "backend") → stop. List them with a distinguishing field (id + path_with_namespace / username / description) and ask which one. Never pick one yourself and write against it.

Before fulfilling a request, check that a script actually does it:

  • A script does it → use it.
  • No script does it → say plainly it's unsupported and stop. There are no tools for project, group, or instance administration (creating or deleting a project, managing members, protected branches, runners, webhooks, or pipeline triggers) — these are out of scope. Work items (epics/tasks/objectives) require a Premium/Ultimate project — if a work-item call returns a tier/availability error, say so plainly and stop; don't fake success. Don't substitute a different script and call it done, and never report success for an action you didn't perform.

Auth

Every shape passes auth as one connection selector, not the secret — a [<resolver>:]<value> string. Every connector accepts zapier:<connection-id> (Zapier-managed auth — routes through Zapier's auth, retries, and governance layer); some also accept one or more direct-token resolvers (naming and count vary per connector) — check this connector's own resolvers rather than assuming. The <resolver>: prefix is optional; a bare value goes to the first resolver that claims it — a UUID-shaped bare value always claims zapier:. Each script declares the connections it needs and the resolvers each accepts. The exact syntax for passing a connection (and how to see this connector's resolver list) differs by shape — see the reference you loaded above.

Checking what's already configured first? Don't dump environment values to do it — env or env | grep <name> prints the value along with the name, leaking a live credential into the transcript if one is set. Check names only (env | cut -d= -f1 | grep -i <name>) or test a known name directly ([ -n "$VAR_NAME" ]).

No connection yet? Pick one — and follow the reference's own flow to obtain it; never just ask the user for a connection id or token as if they already have one memorized:

Load
Pass the credential directlyreferences/use-without-zapier.md
Route it through a Zapier connectionreferences/use-with-zapier.md

Output format

Every script returns a { data, meta } envelope:

  • data — the script's result (the shape its outputSchema declares; see the reference you loaded above for how to inspect a script's exact schema in your shape).
  • meta.outputDataValidation — what validating data did:
    • { skipped: false, droppedPaths: null } — validated, nothing removed.
    • { skipped: false, droppedPaths: [...], instruction } — validated, but those paths were stripped from data: fields the script returned from the API that the outputSchema doesn't declare. If you need them, re-run with output validation skipped.
    • { skipped: true } — validation was bypassed; data is the raw, unchecked script output.

Reading dropped fields / skipOutputDataValidation. To receive the raw, unvalidated result, opt out of output validation (the exact syntax differs by shape — see the reference you loaded above). Input validation is never skipped.

Trimming the result / filterOutputData. To shrink a large result down to the fields you need, pass a jq expression that post-processes data (again, exact syntax per shape). The jq runs against data only, NOT the { data, meta } envelope, so write it rooted at data (run the script's --help — or your shape's equivalent — to see its output schema). The transformed value replaces data, meta is preserved, and the result is NOT re-validated against the output schema.

References

Load the matching reference file before working in that area:

Shortened here. Read the whole file on GitHub.

Signals

GitHub stars
166
Forks
14
Last commit
Aug 2026
Hacker News mentions
20

ahel review

  • S4info
    community integration — published by zapier, not gitlab
  • K1binfo
    installs-packages
  • K6low
    bundled executables the agent is told to run
  • K1binfo
    installs-packages (in cli.js)

Automated review, not a security audit. Ruleset v1+k2.

Advanced
Catalog kind
skill
Gateway key
gitlab-zapier
Source
github.com/zapier/connectors