gitlab-mcp
Provides comprehensive tools for GitLab: manage projects, merge requests, issues, pipelines, wikis, milestones, releases, labels, commits, branches, and file management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gitlab-mcplist merge requests assigned to me"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
gitlab-mcp
A production-ready MCP server for GitLab. Provides 80+ tools that let AI assistants read and manage GitLab projects, merge requests, issues, pipelines, wikis, releases, and more through a unified, policy-controlled interface.
Highlights
Comprehensive GitLab coverage — projects, merge requests (with code-context analysis), issues, pipelines, wikis, milestones, releases, labels, commits, branches, GraphQL, and file management
Multiple transports — stdio for local CLI usage, Streamable HTTP for remote deployments, optional SSE
Flexible authentication — personal access tokens, OAuth 2.0 PKCE, external token scripts, token files, cookie-based auth, and per-request remote authorization
Policy engine — read-only mode, tool allowlist/denylist, feature toggles, and project-scoped restrictions
Enterprise networking — HTTP/HTTPS proxy, custom CA certificates, Cloudflare bypass, multi-instance API rotation
Output control — JSON, compact JSON, or YAML formatting with configurable response size limits
Related MCP server: GitLab MCP Server
Usage
Supported clients
Claude Desktop, Claude Code, VS Code, GitHub Copilot Chat (VS Code), Cursor, JetBrains AI Assistant, GitLab Duo, and any MCP client that supports stdio or streamable HTTP.
Current client format references:
Authentication methods
The server supports three auth patterns:
Personal Access Token (PAT)
OAuth 2.0 PKCE (recommended for local interactive use)
Remote per-request auth (
REMOTE_AUTHORIZATION=true, HTTP mode)
OAuth2 setup (stdio, recommended for local interactive use)
Create a GitLab OAuth application in
Settings -> Applications.Set redirect URI to
http://127.0.0.1:8765/callback(or your custom callback).Set scope to
api.Copy the Application ID as
GITLAB_OAUTH_CLIENT_ID.
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "gitlab-mcp@latest"],
"env": {
"GITLAB_USE_OAUTH": "true",
"GITLAB_OAUTH_CLIENT_ID": "your_oauth_client_id",
"GITLAB_OAUTH_REDIRECT_URI": "http://127.0.0.1:8765/callback",
"GITLAB_API_URL": "https://gitlab.com/api/v4",
"GITLAB_ALLOWED_PROJECT_IDS": "",
"GITLAB_READ_ONLY_MODE": "false",
"USE_GITLAB_WIKI": "true",
"USE_MILESTONE": "true",
"USE_PIPELINE": "true"
}
}
}
}If your OAuth app is confidential, also set GITLAB_OAUTH_CLIENT_SECRET.
Personal Access Token setup (stdio)
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "gitlab-mcp@latest"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-xxxxxxxxxxxxxxxxxxxx",
"GITLAB_API_URL": "https://gitlab.com/api/v4",
"GITLAB_ALLOWED_PROJECT_IDS": "",
"GITLAB_READ_ONLY_MODE": "false",
"USE_GITLAB_WIKI": "true",
"USE_MILESTONE": "true",
"USE_PIPELINE": "true"
}
}
}
}VS Code .vscode/mcp.json examples
PAT with secure prompt input:
{
"inputs": [
{
"type": "promptString",
"id": "gitlab_token",
"description": "GitLab Personal Access Token",
"password": true
}
],
"servers": {
"gitlab": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/gitlab-mcp/dist/index.js"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "${input:gitlab_token}",
"GITLAB_API_URL": "https://gitlab.com/api/v4",
"GITLAB_READ_ONLY_MODE": "false"
}
}
}
}OAuth (confidential app) with secure prompt input:
{
"inputs": [
{
"type": "promptString",
"id": "gitlab_oauth_secret",
"description": "GitLab OAuth Client Secret",
"password": true
}
],
"servers": {
"gitlab": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/gitlab-mcp/dist/index.js"],
"env": {
"GITLAB_USE_OAUTH": "true",
"GITLAB_OAUTH_CLIENT_ID": "your_oauth_client_id",
"GITLAB_OAUTH_CLIENT_SECRET": "${input:gitlab_oauth_secret}",
"GITLAB_OAUTH_REDIRECT_URI": "http://127.0.0.1:8765/callback",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}GitHub Copilot Chat in VS Code uses the same .vscode/mcp.json format.
Claude Desktop / Claude Code / Cursor
Claude Desktop reads claude_desktop_config.json.
Claude Code supports project-level .mcp.json and claude mcp add-json.
Cursor uses .cursor/mcp.json.
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/absolute/path/to/gitlab-mcp/dist/index.js"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-xxxxxxxxxxxxxxxxxxxx",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}GitLab Duo (~/.gitlab/duo/mcp.json)
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/absolute/path/to/gitlab-mcp/dist/index.js"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-xxxxxxxxxxxxxxxxxxxx",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
},
"approvedTools": ["gitlab_get_project", "gitlab_list_merge_requests"]
}JetBrains AI Assistant
JetBrains can import an existing MCP JSON config or register the server manually.
Use stdio command node /absolute/path/to/gitlab-mcp/dist/index.js, or HTTP endpoint http://127.0.0.1:3333/mcp with required headers.
Remote authorization (multi-user HTTP)
Start server:
REMOTE_AUTHORIZATION=true \
HTTP_HOST=0.0.0.0 \
HTTP_PORT=3333 \
node dist/http.jsClient config:
{
"mcpServers": {
"gitlab": {
"url": "http://127.0.0.1:3333/mcp",
"headers": {
"Authorization": "Bearer glpat-xxxxxxxxxxxxxxxxxxxx"
}
}
}
}Dynamic per-request API URL:
REMOTE_AUTHORIZATION=true \
ENABLE_DYNAMIC_API_URL=true \
HTTP_HOST=0.0.0.0 \
HTTP_PORT=3333 \
node dist/http.jsAdd header in client requests:
{
"headers": {
"Authorization": "Bearer glpat-xxxxxxxxxxxxxxxxxxxx",
"X-GitLab-API-URL": "https://gitlab.example.com/api/v4"
}
}Remote auth behavior matrix:
Server Mode | Required Request Headers | Token Fallback Chain |
| none | enabled |
|
| disabled |
|
| disabled |
When HTTP_HOST is not 127.0.0.1, localhost, or ::1, HTTP startup rejects
server-side GITLAB_PERSONAL_ACCESS_TOKEN or GITLAB_JOB_TOKEN unless
REMOTE_AUTHORIZATION=true.
Docker
For containerized deployments, PAT or remote auth is recommended. OAuth interactive callback flow is usually less convenient in containers.
docker compose up --build -dor:
docker build -t gitlab-mcp .
docker run -d \
--name gitlab-mcp \
-p 3333:3333 \
-e GITLAB_API_URL=https://gitlab.com/api/v4 \
-e GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxx \
gitlab-mcpCompatibility notes
GITLAB_PROJECT_IDis not a supported environment variable in this repository.To set an effective default project, use
GITLAB_ALLOWED_PROJECT_IDSwith one project ID, or passproject_idin tool arguments.CLI argument overrides such as
--tokenor--api-urlare not implemented (--env-fileis supported).JSON config files do not support comments (
//).
MCP Server Configuration
HTTP server
pnpm install
cp .env.example .env
pnpm build
# stdio (local MCP)
pnpm start
# streamable HTTP server (http://127.0.0.1:3333/mcp)
pnpm start:http
# optional: load a specific env file
pnpm start -- --env-file .env.local
pnpm start:http -- --env-file .env.localTransport and entrypoint
Transport | Entry Point | Endpoint | Best For |
stdio |
| stdin/stdout | Local single-user MCP clients |
Streamable HTTP |
|
| Remote/shared deployments |
SSE (legacy) |
|
| Legacy SSE-only clients ( |
Health |
|
| Liveness/readiness checks |
SSE=true is not compatible with REMOTE_AUTHORIZATION=true.
Tool Categories
Tools are organized into these categories. All GitLab tools use the gitlab_ prefix, except health_check.
Category | Examples | Count |
Projects |
| 8 |
Repository |
| 7 |
Merge Requests |
| 13 |
MR Code Context |
| 1 |
MR Discussions |
| 7 |
MR Notes |
| 7 |
Draft Notes |
| 7 |
Issues |
| 13 |
Pipelines |
| 20 |
Commits |
| 3 |
Labels |
| 5 |
Milestones |
| 10 |
Releases |
| 7 |
Wiki |
| 5 |
Uploads |
| 2 |
GraphQL |
| 3 |
Users & Groups |
| 6 |
Health |
| 1 |
See docs/tools.md for the complete reference.
Policy & Security
The policy engine controls which tools are available at registration time:
# Read-only mode — disables write/delete/admin capabilities
GITLAB_READ_ONLY_MODE=true
# Disable specific capability classes without going fully read-only
GITLAB_DISABLED_CAPABILITIES=delete,graphql
# Only expose specific tools (supports with or without gitlab_ prefix)
GITLAB_ALLOWED_TOOLS=get_project,list_merge_requests,get_merge_request
# Block tools by regex pattern
GITLAB_DENIED_TOOLS_REGEX=^gitlab_(delete|create)_
# Restrict to specific projects
GITLAB_ALLOWED_PROJECT_IDS=123,456,789
# Keep GraphQL tools enabled in project-scoped mode (disabled by default)
GITLAB_ALLOW_GRAPHQL_WITH_PROJECT_SCOPE=true
# Disable feature groups
USE_PIPELINE=false
USE_GITLAB_WIKI=falseUnsafe or invalid GITLAB_DENIED_TOOLS_REGEX patterns fail startup.
Configuration
All configuration is done through environment variables. Key settings:
For file-based loading, .env is loaded by default. You can override it with:
node dist/index.js --env-file .env.local
node dist/http.js --env-file=.env.productionArea | Variable | Default | Description |
GitLab API |
|
| Base API URL. Supports comma-separated multi-instance URLs. |
GitLab API |
| — | Static default token used when |
GitLab API |
| — | Static CI job token fallback when no personal access token is configured. |
Remote Auth |
|
| Require per-request token headers in HTTP mode (disables fallback token chain). |
Remote Auth |
|
| Require |
Remote Auth |
|
| Enable MCP OAuth discovery/proxy endpoints for HTTP mode. Requires |
HTTP Server |
|
| HTTP bind host ( |
HTTP Server |
|
| HTTP server port. |
HTTP Server |
| — | Public base URL used when HTTP download tools return proxy URLs. |
HTTP Server |
|
| Force JSON-only responses (no streaming framing). |
HTTP Server |
|
| Enable legacy SSE endpoints ( |
Sessions |
|
| Idle session timeout in HTTP mode. |
Sessions |
|
| Use stateless Streamable HTTP transports; clients must send auth on every request. |
Sessions |
|
| Maximum concurrent sessions ( |
Sessions |
|
| Per-session rate limit ( |
Policy |
|
| Disable tools that require |
Policy |
| — | Restrict access to specific GitLab project IDs. |
Policy |
| — | Tool allowlist (supports names with or without |
Policy |
| — | Capability denylist. Valid values: |
Policy |
| — | Regex denylist for tool names. |
Policy |
|
| Keep GraphQL tools enabled when project scope restriction is active. |
Auth Extensions |
|
| Enable OAuth 2.0 PKCE flow. |
Auth Extensions |
| mode-dependent | OAuth scopes advertised/requested by local OAuth and MCP OAuth. |
Auth Extensions |
| — | Resolve token from an external script. |
Auth Extensions |
| — | Resolve token from a local file. |
Auth Extensions |
| — | Enable cookie-jar based session auth from Netscape cookie file. |
Output |
|
| Response format: |
Output |
|
| Max response payload (1KB–2MB), oversized payloads are truncated safely. |
Output |
|
| Max size for files saved locally by download tools such as job artifacts. |
Output |
| random per process | Secret for short-lived HTTP download proxy URLs; set this for multi-replica deployments. |
Output |
|
| Lifetime of generated HTTP download proxy URLs. |
Output |
|
| Upstream GitLab HTTP timeout (1s–120s). |
Output |
|
| Error verbosity ( |
Network/TLS |
| — | Proxy settings for outbound GitLab requests, including per-host proxy bypass rules. |
Network/TLS |
| — | Custom CA certificate path (PEM). |
Network/TLS |
|
| Add browser-like headers for Cloudflare-protected instances. |
Network/TLS |
| — | Custom User-Agent for GitLab requests. |
See docs/configuration.md for the complete reference.
Authentication Methods
Authentication behavior depends on mode:
REMOTE_AUTHORIZATION=true(HTTP strong mode) Each request must includeAuthorization: Bearer <token>,Private-Token: <token>, orJob-Token: <token>. WhenENABLE_DYNAMIC_API_URL=true, each request must also includeX-GitLab-API-URL.REMOTE_AUTHORIZATION=false(default mode) The server resolves credentials in this order:GITLAB_PERSONAL_ACCESS_TOKEN->GITLAB_JOB_TOKEN-> OAuth PKCE (GITLAB_USE_OAUTH=true) ->GITLAB_TOKEN_SCRIPT->GITLAB_TOKEN_FILE.
Cookie-based auth (GITLAB_AUTH_COOKIE_PATH) is applied independently via a cookie jar and can work with or without a token.
See docs/authentication.md for setup guides.
Development
pnpm dev # stdio mode with hot-reload
pnpm dev:http # HTTP mode with hot-reload
pnpm test # Run tests
pnpm test:watch # Run tests in watch mode
pnpm lint # Lint
pnpm typecheck # Type check
pnpm inspector # Launch MCP InspectorProject Structure
See docs/architecture.md for detailed design documentation.
Documentation
Configuration Reference — All environment variables
Tools Reference — Complete list of MCP tools
Authentication Guide — Auth methods and setup
Deployment Guide — Docker, production, and multi-instance
Architecture — Internal design and patterns
Acknowledgements
This repository references and learns from parts of the implementation in zereight/gitlab-mcp. Thanks to the maintainers and contributors for their work.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpland/gitlab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server