MCP server for GitLab API — projects, MRs, pipelines, CI/CD variables, approvals, and more
Project description
mcp-gitlab
mcp-gitlab is a Model Context Protocol (MCP) server for the GitLab REST API that provides 76 tools for AI assistants to manage projects, merge requests, pipelines, CI/CD variables, approvals, issues, code reviews, and more. Works with Claude Desktop, Claude Code, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client.
Built with FastMCP, httpx, and Pydantic.
1-Click Installation
💡 Tip: For other AI assistants (Claude Code, Windsurf, IntelliJ), visit the GitLab MCP Installation Gateway.
Manual Setup Guides (Click to expand)
Prerequisite: Install
uvfirst (required for alluvxinstall flows). Install uv.
Claude Code
claude mcp add gitlab -- uvx mcp-gitlab
Windsurf & IntelliJ
Windsurf: Add to ~/.codeium/windsurf/mcp_config.json
IntelliJ: Add to Settings | Tools | MCP Servers
Note: The actual server config starts at
gitlabinside themcpServersobject.
{
"mcpServers": {
"gitlab": {
"command": "uvx",
"args": ["mcp-gitlab"],
"env": {
"GITLAB_URL": "https://gitlab.example.com",
"GITLAB_TOKEN": "glpat-xxxxxxxxxxxxxxxxxxxx"
}
}
}
}
pip / uv
uv pip install mcp-gitlab
Configuration
| Variable | Required | Default | Description |
|---|---|---|---|
GITLAB_URL |
Yes | - | GitLab instance URL (e.g. https://gitlab.example.com) |
GITLAB_TOKEN |
Yes | - | Authentication token (see below) |
GITLAB_READ_ONLY |
No | false |
Set to true to disable write operations |
GITLAB_TIMEOUT |
No | 30 |
Request timeout in seconds |
GITLAB_SSL_VERIFY |
No | true |
Set to false to skip SSL verification |
Supported Token Types
GITLAB_TOKEN (or GITLAB_PAT) accepts any of these:
| Token Type | Format | Use Case |
|---|---|---|
| Personal access token | glpat-xxx |
User-level access with api scope |
| OAuth2 token | oauth-xxx |
OAuth app integrations |
| CI job token | $CI_JOB_TOKEN |
GitLab CI pipeline access |
Compatibility
| Client | Supported | Install Method |
|---|---|---|
| Claude Desktop | Yes | claude_desktop_config.json |
| Claude Code | Yes | claude mcp add |
| Cursor | Yes | One-click deeplink or .cursor/mcp.json |
| VS Code Copilot | Yes | One-click deeplink or .vscode/mcp.json |
| Windsurf | Yes | ~/.codeium/windsurf/mcp_config.json |
| Any MCP client | Yes | stdio or HTTP transport |
Tools (76)
| Category | Count | Tools |
|---|---|---|
| Projects | 4 | get, create, delete, update merge settings |
| Project Approvals | 10 | get/update config, CRUD approval rules (project + MR) |
| Groups | 6 | list, get, share/unshare project, share/unshare group |
| Branches | 3 | list, create, delete |
| Commits | 4 | list, get (with diff), create, compare |
| Merge Requests | 8 | list, get, create, update, merge, merge-sequence, rebase, changes |
| MR Notes | 6 | list, add, delete, update, award emoji, remove emoji |
| MR Discussions | 4 | list, create (inline + multi-line), reply, resolve |
| Pipelines | 5 | list, get (with jobs), create, retry, cancel |
| Jobs | 4 | retry, play, cancel, get log |
| Tags | 4 | list, get, create, delete |
| Releases | 5 | list, get, create, update, delete |
| CI/CD Variables | 8 | CRUD for project variables, CRUD for group variables |
| Issues | 5 | list, get, create, update, add comment |
Full tool reference (click to expand)
Projects
| Tool | Description |
|---|---|
gitlab_get_project |
Get project details |
gitlab_create_project |
Create a new project |
gitlab_delete_project |
Delete a project |
gitlab_update_project_merge_settings |
Update merge settings |
Project Approvals
| Tool | Description |
|---|---|
gitlab_get_project_approvals |
Get approval config |
gitlab_update_project_approvals |
Update approval settings |
gitlab_list_project_approval_rules |
List approval rules |
gitlab_create_project_approval_rule |
Create approval rule |
gitlab_update_project_approval_rule |
Update approval rule |
gitlab_delete_project_approval_rule |
Delete approval rule |
gitlab_list_mr_approval_rules |
List MR approval rules |
gitlab_create_mr_approval_rule |
Create MR approval rule |
gitlab_update_mr_approval_rule |
Update MR approval rule |
gitlab_delete_mr_approval_rule |
Delete MR approval rule |
Groups
| Tool | Description |
|---|---|
gitlab_list_groups |
List groups |
gitlab_get_group |
Get group details |
gitlab_share_project_with_group |
Share project with group |
gitlab_unshare_project_with_group |
Unshare project from group |
gitlab_share_group_with_group |
Share group with group |
gitlab_unshare_group_with_group |
Unshare group from group |
Branches
| Tool | Description |
|---|---|
gitlab_list_branches |
List branches |
gitlab_create_branch |
Create a branch |
gitlab_delete_branch |
Delete a branch |
Commits
| Tool | Description |
|---|---|
gitlab_list_commits |
List commits |
gitlab_get_commit |
Get commit (with optional diff) |
gitlab_create_commit |
Create commit with file actions |
gitlab_compare |
Compare branches/tags/commits |
Merge Requests
| Tool | Description |
|---|---|
gitlab_list_mrs |
List merge requests |
gitlab_get_mr |
Get MR details |
gitlab_create_mr |
Create merge request |
gitlab_update_mr |
Update merge request |
gitlab_merge_mr |
Merge a merge request |
gitlab_merge_mr_sequence |
Merge multiple MRs in order |
gitlab_rebase_mr |
Rebase a merge request |
gitlab_mr_changes |
Get MR file changes |
MR Notes
| Tool | Description |
|---|---|
gitlab_list_mr_notes |
List MR comments |
gitlab_add_mr_note |
Add comment to MR |
gitlab_delete_mr_note |
Delete MR comment |
gitlab_update_mr_note |
Update MR comment |
gitlab_award_emoji |
Award emoji to note |
gitlab_remove_emoji |
Remove emoji from note |
MR Discussions
| Tool | Description |
|---|---|
gitlab_list_mr_discussions |
List discussions |
gitlab_create_mr_discussion |
Create discussion (inline + multi-line) |
gitlab_reply_to_discussion |
Reply to discussion |
gitlab_resolve_discussion |
Resolve/unresolve discussion |
Pipelines
| Tool | Description |
|---|---|
gitlab_list_pipelines |
List pipelines |
gitlab_get_pipeline |
Get pipeline (with optional jobs) |
gitlab_create_pipeline |
Trigger pipeline |
gitlab_retry_pipeline |
Retry failed jobs |
gitlab_cancel_pipeline |
Cancel pipeline |
Jobs
| Tool | Description |
|---|---|
gitlab_retry_job |
Retry a job |
gitlab_play_job |
Trigger manual job |
gitlab_cancel_job |
Cancel a job |
gitlab_get_job_log |
Get job log output |
Tags
| Tool | Description |
|---|---|
gitlab_list_tags |
List tags |
gitlab_get_tag |
Get tag details |
gitlab_create_tag |
Create a tag |
gitlab_delete_tag |
Delete a tag |
Releases
| Tool | Description |
|---|---|
gitlab_list_releases |
List releases |
gitlab_get_release |
Get release details |
gitlab_create_release |
Create a release |
gitlab_update_release |
Update a release |
gitlab_delete_release |
Delete a release |
CI/CD Variables
| Tool | Description |
|---|---|
gitlab_list_variables |
List project variables |
gitlab_create_variable |
Create project variable |
gitlab_update_variable |
Update project variable |
gitlab_delete_variable |
Delete project variable |
gitlab_list_group_variables |
List group variables |
gitlab_create_group_variable |
Create group variable |
gitlab_update_group_variable |
Update group variable |
gitlab_delete_group_variable |
Delete group variable |
Issues
| Tool | Description |
|---|---|
gitlab_list_issues |
List issues |
gitlab_get_issue |
Get issue details |
gitlab_create_issue |
Create an issue |
gitlab_update_issue |
Update an issue |
gitlab_add_issue_comment |
Add comment to issue |
Development
git clone https://github.com/vish288/mcp-gitlab.git
cd mcp-gitlab
uv sync --all-extras
uv run pytest --cov
uv run ruff check .
uv run ruff format --check .
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_gitlab-0.4.0.tar.gz.
File metadata
- Download URL: mcp_gitlab-0.4.0.tar.gz
- Upload date:
- Size: 139.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8defec3e59f4580d22d1a67588048f14ba4954e6d07d58659c4dab606d48b43
|
|
| MD5 |
7a0461eebbd5fe9adeb2c3dabb293d00
|
|
| BLAKE2b-256 |
4ed8e9e47a9cd67d0120cc61a66103c11d93a14c8f8a435615929f5e19c974a0
|
Provenance
The following attestation bundles were made for mcp_gitlab-0.4.0.tar.gz:
Publisher:
publish.yml on vish288/mcp-gitlab
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_gitlab-0.4.0.tar.gz -
Subject digest:
f8defec3e59f4580d22d1a67588048f14ba4954e6d07d58659c4dab606d48b43 - Sigstore transparency entry: 983754204
- Sigstore integration time:
-
Permalink:
vish288/mcp-gitlab@e8636028871cbc019ef545d62ee67a3810d487e4 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/vish288
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e8636028871cbc019ef545d62ee67a3810d487e4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mcp_gitlab-0.4.0-py3-none-any.whl.
File metadata
- Download URL: mcp_gitlab-0.4.0-py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef2248307748e4db90c60caaa458e1c4295b48baff6396d48359da5d7e0d5ca6
|
|
| MD5 |
874e244d19cd74cc5c29296f29ed37a8
|
|
| BLAKE2b-256 |
590edf5f86e2f1cfd9029cdcffc494a684a265bbfeb236703edb7cbc0b0a4ce1
|
Provenance
The following attestation bundles were made for mcp_gitlab-0.4.0-py3-none-any.whl:
Publisher:
publish.yml on vish288/mcp-gitlab
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_gitlab-0.4.0-py3-none-any.whl -
Subject digest:
ef2248307748e4db90c60caaa458e1c4295b48baff6396d48359da5d7e0d5ca6 - Sigstore transparency entry: 983754207
- Sigstore integration time:
-
Permalink:
vish288/mcp-gitlab@e8636028871cbc019ef545d62ee67a3810d487e4 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/vish288
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e8636028871cbc019ef545d62ee67a3810d487e4 -
Trigger Event:
push
-
Statement type: