GitLab MCP Server
Enables LLMs to interact with GitLab via MCP, providing access to issues, merge requests, pipelines, and repository files for browsing, searching, and reading details.
README
GitLab MCP Server
An MCP (Model Context Protocol) server that allows LLMs to interact with GitLab. Access issues, merge requests, pipelines, and repository files directly from Claude Code or other MCP-compatible clients.
Features
- Browse and search projects
- View issues and merge requests (including your own and team-labeled)
- Read MR diffs and comments
- Check pipeline status and job logs
- Browse repository files
Setup
1. Install dependencies
make install
# or
uv sync
2. Create GitLab Personal Access Token
- Go to GitLab → Avatar (top-right) → Edit profile
- Left sidebar → Access Tokens
- Click Add new token
- Configure:
- Token name: e.g., "MCP Server"
- Expiration date: choose as needed
- Scopes:
read_api(required)read_repository(for file content access)
- Click Create personal access token
- Copy the token (won't be shown again)
Direct URL: https://gitlab.com/-/user_settings/personal_access_tokens
3. Configure environment
cp .env.example .env
Edit .env with your values:
GITLAB_URL=https://gitlab.com
GITLAB_TOKEN=your-private-token-here
DEFAULT_ASSIGNEE=me
Configuration
| Variable | Description | Default |
|---|---|---|
GITLAB_URL |
Your GitLab instance URL | https://gitlab.com |
GITLAB_TOKEN |
Personal access token | (required) |
DEFAULT_ASSIGNEE |
Username for "my_*" tools filters | me |
Usage
Run directly
uv run python main.py
Run in background
make start # Start server
make stop # Stop server
make restart # Restart server
make status # Check if running
make logs # Tail server logs
Add to Claude Code
Create .mcp.json in your project root:
{
"mcpServers": {
"gitlab": {
"command": "uv",
"args": ["run", "python", "main.py"],
"cwd": "/path/to/gitlab-mcp-server"
}
}
}
Or use the CLI:
claude mcp add gitlab -- uv run python main.py
Verify with /mcp command inside Claude Code.
Test the server
# Test with MCP Inspector
npx @modelcontextprotocol/inspector uv run python main.py
# Test API connection
uv run python -c "
from tools.projects import get_client
with get_client() as client:
r = client.get('/user')
print('Authenticated as:', r.json().get('username'))
"
Available Tools
Projects
| Tool | Description |
|---|---|
list_projects |
List accessible projects (search, filter by ownership/membership) |
get_project |
Get project details by path |
Issues
| Tool | Description |
|---|---|
list_issues |
List issues in a project (filter by state, labels, search) |
my_issues |
List issues assigned to you (uses DEFAULT_ASSIGNEE) |
team_issues |
List issues with a team label (default: "RE") |
get_issue |
Get issue details including description |
get_issue_comments |
Get comments/notes on an issue |
Merge Requests
| Tool | Description |
|---|---|
list_merge_requests |
List MRs in a project (filter by state, branches, search) |
my_merge_requests |
List MRs assigned to you |
my_merge_requests_to_review |
List MRs where you are a reviewer |
team_merge_requests |
List MRs with a team label (default: "RE") |
get_merge_request |
Get MR details including description |
get_merge_request_changes |
Get MR file diffs |
get_merge_request_comments |
Get MR comments/discussions |
Pipelines
| Tool | Description |
|---|---|
list_pipelines |
List pipelines in a project (filter by status, branch) |
get_pipeline_jobs |
Get jobs for a pipeline |
get_job_log |
Get job log output |
Repository
| Tool | Description |
|---|---|
list_repository_tree |
List files/directories in a repo |
get_file_content |
Get file content from a repo |
Project Structure
gitlab-mcp-server/
├── main.py # Entry point
├── client.py # HTTP client & settings
├── models.py # Pydantic models
├── tools/
│ ├── projects.py # Project tools
│ ├── issues.py # Issue tools
│ ├── merge_requests.py # MR tools
│ ├── pipelines.py # Pipeline tools
│ └── repository.py # Repository tools
├── .env.example # Environment template
└── Makefile # Run commands
License
MIT
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.