The GitLab MCP Server allows you to interact with GitLab repositories programmatically, providing functionality for project management, file operations, issue tracking, and more through a standardized Model Context Protocol interface.
You'll need a GitLab Personal Access Token to use this MCP server:
api
for full API accessread_api
for read-only accessread_repository
and write_repository
for repository operationsYou can set up the GitLab MCP server using either Docker or NPX.
Add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"gitlab": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"GITLAB_PERSONAL_ACCESS_TOKEN",
"-e",
"GITLAB_API_URL",
"mcp/gitlab"
],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}
Add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gitlab"
],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}
GITLAB_PERSONAL_ACCESS_TOKEN
: Your GitLab personal access token (required)GITLAB_API_URL
: Base URL for GitLab API (optional, defaults to https://gitlab.com/api/v4
)The GitLab MCP server provides several tools for interacting with GitLab repositories. Here's how to use each one:
create_or_update_file({
project_id: "username/repo",
file_path: "path/to/file.txt",
content: "File content here",
commit_message: "Add new file",
branch: "main"
})
For renaming/moving a file, add the previous_path
parameter:
create_or_update_file({
project_id: "username/repo",
file_path: "new/path/to/file.txt",
content: "File content here",
commit_message: "Move file to new location",
branch: "main",
previous_path: "old/path/to/file.txt"
})
push_files({
project_id: "username/repo",
branch: "main",
commit_message: "Add multiple files",
files: [
{
file_path: "file1.txt",
content: "Content of file 1"
},
{
file_path: "file2.txt",
content: "Content of file 2"
}
]
})
get_file_contents({
project_id: "username/repo",
file_path: "path/to/file.txt",
ref: "main" // optional
})
search_repositories({
search: "project-name",
page: 1, // optional
per_page: 20 // optional
})
create_repository({
name: "new-project",
description: "My new GitLab project", // optional
visibility: "private", // optional: 'private', 'internal', or 'public'
initialize_with_readme: true // optional
})
fork_repository({
project_id: "username/repo",
namespace: "your-namespace" // optional
})
create_branch({
project_id: "username/repo",
branch: "new-feature",
ref: "main" // optional, source branch
})
create_issue({
project_id: "username/repo",
title: "Bug in login function",
description: "The login function fails when...", // optional
assignee_ids: [123, 456], // optional
labels: ["bug", "priority"], // optional
milestone_id: 1 // optional
})
create_merge_request({
project_id: "username/repo",
title: "Implement new feature",
description: "This MR adds...", // optional
source_branch: "feature-branch",
target_branch: "main",
draft: true, // optional
allow_collaboration: true // optional
})
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.