Gitlab
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.
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
), 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 (
) by default; the host is configurable for self-managed and GitLab Dedicated instances.
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
auth commands, run
here once. Importing the published package as a dependency in your own project instead? That
already resolves everything — see
.
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. ), or you can register a local server yourself (or guide the user to) | |
| Terminal / subprocess access (you can run ) | |
| Only your own code, importing this package as a dependency | |
| 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
. Project-scoped tools take a
(numeric id or URL-encoded
path); issues and MRs are addressed by their project-scoped
, not the global id. The script's
/
(Zod) inside the file is the source of truth for its contract.
Projects & search
| Script | Script name | Connections | Description |
|---|
| | | List or search projects the token can see (resolves ). |
| | | Get one project's metadata by id or path (incl. ). |
| | | Search globally across projects, issues, MRs, milestones, users, code, or commits. |
| | | Search within one project across issues, MRs, milestones, users, code, or commits. |
| | | Search within one group across projects, issues, MRs, milestones, users, code, or commits. |
Issues
| Script | Script name | Connections | Description |
|---|
| | | List issues in a project, filterable by state, labels, assignee, or milestone. |
| | | Get one issue including its full markdown description. |
| | | Open a new issue with a markdown description. |
| | | Update an issue's fields, or close/reopen it. |
scripts/addIssueComment.ts
| | | Add a comment (note) to an issue. |
Merge requests
| Script | Script name | Connections | Description |
|---|
scripts/listMergeRequests.ts
| | | List MRs assigned to or created by the token identity across all projects (global). |
scripts/listProjectMergeRequests.ts
| | | List merge requests in one project. |
scripts/listGroupMergeRequests.ts
| | | List merge requests across all projects in one group. |
scripts/getMergeRequest.ts
| | | Get one merge request's full detail (the entry point to the review loop). |
scripts/createMergeRequest.ts
| | | Open a merge request from a source branch into a target branch. |
scripts/updateMergeRequest.ts
| | | Update an MR's fields, or close/reopen it. |
scripts/mergeMergeRequest.ts
| | | Merge a merge request (optionally squash, or guard with a head ). |
scripts/approveMergeRequest.ts
| | | Approve (or revoke approval on) a merge request. |
scripts/getMergeRequestDiffs.ts
| | | Get the paginated file diffs for a merge request. |
scripts/listMergeRequestCommits.ts
| | | List the commits on a merge request. |
scripts/listMergeRequestNotes.ts
| | | List the comments (notes) on a merge request. |
scripts/addMergeRequestComment.ts
| | | Add a top-level comment (note) to a merge request. |
scripts/addMergeRequestDiffComment.ts
| addMergeRequestDiffComment
| | Add a review comment pinned to a specific line of an MR diff. |
scripts/listMergeRequestDiscussions.ts
| listMergeRequestDiscussions
| | List discussion threads on an MR, incl. diff notes and resolved/resolvable status. |
Repository
| Script | Script name | Connections | Description |
|---|
| | | List (or search) a project's branches. |
| | | Create a branch from an existing ref (ref is required — no silent default). |
| | | Create, update, delete, or move multiple files in a single atomic commit. |
| | | List commits on a branch or across the repository. |
| | | Read a file's contents at a ref. |
scripts/listRepositoryTree.ts
| | | List files and directories in a repository path. |
| | | Compare two refs and return the diff between them. |
CI/CD
| Script | Script name | Connections | Description |
|---|
scripts/triggerPipeline.ts
| | | Run a new pipeline on a ref, with optional CI/CD variables. |
| | | List pipelines for a project, filterable by ref or status. |
| | | Get one pipeline's status and metadata. |
scripts/listPipelineJobs.ts
| | | List the jobs in a pipeline. |
| | | Get the log (trace) output of a CI job. |
| | | Retry the failed and canceled jobs in a pipeline, keeping the passed ones. |
scripts/cancelPipeline.ts
| | | Cancel a running pipeline, stopping its in-progress and pending jobs. |
| | | Start a manual job waiting on a manual action (a play button). |
Work items (GraphQL)
| Script | Script name | Connections | Description |
|---|
| | | List work items in a project or group, filterable by type and state. |
| | | Get one work item's full detail including its description and type. |
scripts/createWorkItem.ts
| | | Create a work item (epic, task, objective, etc.) in a project or group. |
scripts/updateWorkItem.ts
| | | Update a work item's fields, or close/reopen it. |
Metadata & resolvers
| Script | Script name | Connections | Description |
|---|
| | | List a project's labels (resolves valid label names). |
scripts/listMilestones.ts
| | | List a project's milestones (resolves ). |
scripts/getCurrentUser.ts
| | | Get the identity of the authenticated token (also the connection test). |
| | | Find 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
, users looked up by username via
, and labels or milestones via
/
:
- 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 , two users both named "Jordan Lee", two labels both "backend") → stop. List them with a distinguishing field (id + / 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
string. This connector accepts two resolvers on its single
connection:
- — a long-lived GitLab access token (personal, project, or group), read from the named environment variable and sent as the header. Mint the token with the scope for full read+write access, or for a read-only agent (the list/get/search/diff/log tools). Set (default ) to point the connector at a self-managed or GitLab Dedicated instance; the token is only ever sent to that host.
- — Zapier-managed auth, which routes through Zapier's auth, retries, and governance layer and also supports OAuth. A UUID-shaped bare value always claims .
The
prefix is optional; a bare value goes to the first resolver that claims it. 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 —
or
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 (
).
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 directly | references/use-without-zapier.md
|
| Route it through a Zapier connection | references/use-with-zapier.md
|
Output format
Every script returns a
envelope:
- — the script's result (the shape its declares; see the reference you loaded above for how to inspect a script's exact schema in your shape).
meta.outputDataValidation
— what validating did:
{ skipped: false, droppedPaths: null }
— validated, nothing removed.
{ skipped: false, droppedPaths: [...], instruction }
— validated, but those paths were stripped from : fields the script returned from the API that the doesn't declare. If you need them, re-run with output validation skipped.
- — validation was bypassed; is the raw, unchecked script output.
Reading dropped fields / . 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 / . To shrink a large result down to the fields you need, pass a jq expression that post-processes
(again, exact syntax per shape). The jq runs against
only, NOT the
envelope, so write it rooted at
(run the script's
— or your shape's equivalent — to see its output schema). The transformed value replaces
,
is preserved, and the result is NOT re-validated against the output schema.
References
Load the matching reference file before working in that area:
| Reference | Covers | Load it when |
|---|
references/gitlab-api-gotchas.md
| Vendor behaviors that break a naive caller: vs OAuth Bearer auth and / scopes, numeric-id-vs-encoded-path and -vs-global-id, the JSON error shape and status codes, offset vs keyset pagination, gitlab.com rate limits, the singular , merge 405-when-not-mergeable and the guard, GraphQL-only work items. | Before any write, or when a call returns a non-2xx status, a 405 on merge, an empty/errored pipeline or work-item call, or an unexpected pagination result. |
references/gitlab-formatting.md
| GitLab Flavored Markdown: blank-line paragraph breaks, // references, task lists, tables, fenced code highlighting. | When composing a GitLab issue or merge-request description, a work-item body, or a note/diff comment. |