GitLab MCP Server
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 MCP ServerCreate merge request in my-project from feature to main"
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 Server
This documentation is available in简体中文.
A GitLab API server built on the Model Context Protocol (MCP). This server provides a set of tools that allow AI models to interact with GitLab instances, with a focus on branch management and merge request (MR) operations.
Project Info
Package: @jesbrian/gitlab-mcp-server
Version: 0.2.4
Type: CommonJS
Main Entry: index.js
Executable: gitlab-mcp-server
Config Module: config/Config.js
Related MCP server: GitLab MR MCP
Project Structure
gitlab-mcp-server/
├── index.js # Main entry file
├── config/ # Config directory
│ └── Config.js # Centralized config file
├── lib/ # Library directory
│ └── GitLabClient.js # GitLab API client
├── package.json
└── README.mdModular Design
GitLabClient.js: Client class encapsulating GitLab API calls (root directory)
config/Config.js: Centralized management for all configuration items (GitLab connection, client options, MCP Server config, Tools definitions)
index.js: MCP Server main logic, handles tool invocations and request processing
Features
User Management: Get current GitLab user information.
Project Management: Search projects, get project ID mappings, and retrieve project details.
Branch Management:
List repository branches.
Create new branches (supports specifying source branch/tag).
Delete branches.
Merge Request (MR) Management:
Create MRs (supports standard creation and quick creation for public repositories).
Get MR status (including merge status, conflict detection).
Execute merge operations.
Close MRs.
Poll and wait for MR to become mergeable (supports timeout settings).
Configuration
All configuration items are centralized in lib/config/Config.js, customizable via environment variables:
Configure the following environment variables:
Variable | Description | Required | Default |
| GitLab instance URL (e.g., | Yes | - |
| GitLab personal access token (Private Token) | Yes | - |
| Request timeout in milliseconds | No | 10000 |
| Polling interval in milliseconds | No | 2000 |
Usage
As an MCP Server
Add to Claude Desktop configuration file:
Option 1: Using npx (Recommended)
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["@jesbrian/gitlab-mcp-server"],
"env": {
"GITLAB_URL": "https://your-gitlab-url.com",
"GITLAB_PRIVATE_TOKEN": "your-private-token"
}
}
}
}Option 2: Local Path
Start the project locally first, then configure Claude Code:
# After cloning the project, enter the directory and install dependencies
cd gitlab-mcp-server
npm install
# Start the service locally (choose one method)
npm start # Option 1: Use npm scripts
node index.js # Option 2: Run directly
gitlab-mcp-server # Option 3: Install globally and use commandAdd to Claude Code MCP configuration:
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/gitlab-mcp-server/index.js"],
"env": {
"GITLAB_URL": "https://your-gitlab-url.com",
"GITLAB_PRIVATE_TOKEN": "your-private-token"
}
}
}
}Available Tools
User & Project Management
get_current_user: Get current GitLab user information.get_project_ids: Search projects by name and get project ID mappings (returns IDs across different namespaces).get_project: Get detailed information for a specified project.
Branch Operations
get_repository_branches: List branches of a project.create_branch: Create a new branch (can specify source branch/tag, defaults to master).delete_branch: Delete a branch.
Merge Request (MR)
create_merge_request: Create a merge request (supports custom title and description).create_merge_request_to_public: Quick tool that auto-detects personal and public repositories, creates MR from personal branch to public repository.merge_branch: Execute merge operation.get_merge_request_status: Get current MR status (including merge status, conflicts, etc.).close_merge_request: Close a merge request.wait_for_mergeable_status: Poll and wait for MR to become mergeable (supports timeout, default 5 minutes).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/JesBrian/gitlab-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server