GitLab MCP Server
Enables AI assistants to interact with GitLab repositories, manage branches, create merge requests, and perform file operations through natural language.
README
GitLab MCP Server
A Model Context Protocol (MCP) server that provides GitLab API integration for AI assistants like Claude. This server enables AI agents to interact with GitLab repositories, manage branches, create merge requests, and perform file operations.
Features
- Repository Management: List and get details of GitLab projects
- Branch Operations: Create, list, and delete branches
- Merge Requests: Create, list, and merge pull requests
- File Operations: Read, create, update, and delete repository files
- Secure Authentication: Token-based authentication with GitLab API
Installation
- Clone the repository:
git clone <repository-url>
cd gitlab-mcp-server
- Install dependencies:
npm install
- Set up environment variables:
cp .env.example .env
# Edit .env with your GitLab credentials
Configuration
Create a .env file with the following variables:
GITLAB_TOKEN=your_gitlab_personal_access_token
GITLAB_URL=https://gitlab.com/api/v4
DEFAULT_PROJECT_ID=your_default_project_id
Environment Variables
GITLAB_TOKEN: Your GitLab personal access token (required)GITLAB_URL: GitLab API base URL (defaults to https://gitlab.com/api/v4)DEFAULT_PROJECT_ID: Default project ID for operations (optional)
Claude Code Configuration
To use this MCP server with Claude Code, you need to configure it in your MCP settings. Create or update the MCP configuration file:
Option 1: Project-specific configuration
Create an mcp.json file in your project directory:
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/gitlab-mcp-server/dist/index.js"],
"env": {
"GITLAB_TOKEN": "your_gitlab_personal_access_token",
"GITLAB_URL": "https://gitlab.com/api/v4",
"DEFAULT_PROJECT_ID": "your_project_id"
}
}
}
}
Option 2: Global configuration
Add to your global Claude Code configuration file (usually in ~/.config/claude-code/mcp.json or similar):
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/gitlab-mcp-server/dist/index.js"],
"env": {
"GITLAB_TOKEN": "your_gitlab_personal_access_token",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}
Note: Replace /path/to/gitlab-mcp-server with the actual path where you cloned this repository.
Using environment variables instead
For better security, you can reference environment variables in your mcp.json:
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/gitlab-mcp-server/dist/index.js"],
"env": {
"GITLAB_TOKEN": "${GITLAB_TOKEN}",
"GITLAB_URL": "${GITLAB_URL}",
"DEFAULT_PROJECT_ID": "${DEFAULT_PROJECT_ID}"
}
}
}
}
Then set these environment variables in your shell profile (~/.bashrc, ~/.zshrc, etc.).
Usage
Development Mode
npm run dev
Production Mode
npm run build
npm start
Watch Mode (Auto-restart on changes)
npm run watch
Available Tools
Repository Tools
list_projects: List accessible GitLab projectsget_project: Get detailed information about a specific project
Branch Tools
list_branches: List all branches in a repositorycreate_branch: Create a new branch from an existing onedelete_branch: Delete a branch from the repository
Merge Request Tools
create_merge_request: Create a new merge requestlist_merge_requests: List merge requests with filtering optionsmerge_merge_request: Merge an approved merge request
File Tools
get_file: Read file content from a repositorycreate_file: Create a new file in the repositoryupdate_file: Update existing file contentdelete_file: Delete a file from the repository
Usage with Claude Code
This MCP server is designed to work seamlessly with Claude Code and other MCP-compatible AI assistants. Here are some example use cases:
Example 1: Creating a Feature Branch and Merge Request
You: "Create a new feature branch called 'add-user-auth' from main, then create a merge request for it"
Claude (using this MCP server):
1. Uses create_branch tool to create 'add-user-auth' branch from 'main'
2. Uses create_merge_request tool to create a merge request
3. Provides you with the merge request URL and details
Example 2: File Operations
You: "Add a new configuration file config/database.yml to the repository"
Claude (using this MCP server):
1. Uses create_file tool to add the new file
2. Commits the change with an appropriate message
3. Confirms the file was created successfully
Example 3: Code Review Workflow
You: "List all open merge requests and show me the files changed in MR #42"
Claude (using this MCP server):
1. Uses list_merge_requests tool to get open MRs
2. Uses get_file tool to show changed files in the specific MR
3. Provides a summary of the changes for review
Architecture
The server follows a modular architecture:
src/index.ts: Main server entry point and MCP setupsrc/gitlab-client.ts: GitLab API client wrappersrc/tools/: Individual tool implementationsrepository.ts: Project management toolsbranches.ts: Branch operation toolsmerge-requests.ts: Merge request toolsfiles.ts: File operation tools
Development
Project Structure
├── src/
│ ├── index.ts # Main server entry point
│ ├── gitlab-client.ts # GitLab API client
│ └── tools/ # MCP tool implementations
│ ├── repository.ts
│ ├── branches.ts
│ ├── merge-requests.ts
│ └── files.ts
├── dist/ # Compiled JavaScript output
├── package.json
├── tsconfig.json
└── README.md
Building
npm run build
Testing
The server can be tested by connecting it to any MCP-compatible client or by using the MCP debugging tools.
Authentication
This server uses GitLab Personal Access Tokens for authentication. To create a token:
- Go to your GitLab profile settings
- Navigate to "Access Tokens"
- Create a new token with appropriate scopes:
api: Full access to the APIread_user: Read user informationread_repository: Read repository contentwrite_repository: Write to repositories
Security Notes
- Store your GitLab token securely in environment variables
- Never commit tokens to version control
- Use minimal required permissions for your token
- Regularly rotate your access tokens
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a merge request
License
MIT License - see LICENSE file for details.
Support
For issues and feature requests, please create an issue in the GitLab repository.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.