GitLab MCP Server
Provides tools for managing GitLab projects, issues, merge requests, and files via the GitLab API, enabling AI assistants to interact programmatically with GitLab.
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 Serverlist my open merge requests"
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
MCP (Model Context Protocol) server để tích hợp với GitLab API, cho phép AI assistants tương tác với GitLab thông qua các tools và resources.
Tính năng
Tools (Các thao tác có thể thực hiện)
Project Tools
list_projects- Liệt kê GitLab projectsget_project- Lấy thông tin chi tiết projectcreate_project- Tạo project mớisearch_projects- Tìm kiếm projects
Issue Tools
list_issues- Liệt kê issuesget_issue- Lấy thông tin chi tiết issuecreate_issue- Tạo issue mớiupdate_issue- Cập nhật issueclose_issue- Đóng issue
Merge Request Tools
list_merge_requests- Liệt kê merge requestsget_merge_request- Lấy thông tin chi tiết merge requestcreate_merge_request- Tạo merge request mớiupdate_merge_request- Cập nhật merge requestmerge_merge_request- Merge merge request
File Tools
get_file- Đọc file từ repositorylist_files- Liệt kê files trong directorycreate_file- Tạo file mớiupdate_file- Cập nhật file
Resources (Dữ liệu có thể truy cập)
gitlab://projects- Danh sách projectsgitlab://issues- Danh sách issuesgitlab://merge-requests- Danh sách merge requestsgitlab://project/{projectId}- Thông tin project cụ thểgitlab://issue/{projectId}/{issueIid}- Thông tin issue cụ thểgitlab://merge-request/{projectId}/{mrIid}- Thông tin merge request cụ thểgitlab://file/{projectId}/{filePath}- Nội dung file
Related MCP server: gitlab-mcp-server
Cài đặt
Yêu cầu
Node.js >= 18.0.0
GitLab Personal Access Token với các quyền:
api,read_api,write_repository
Cài đặt dependencies
npm installCài đặt global (tùy chọn)
Để cài đặt package này như một global command, bạn có thể sử dụng:
npm run install-globalHoặc cài đặt trực tiếp từ thư mục hiện tại:
npm run build
npm install -g .Sau khi cài đặt global, bạn có thể chạy server từ bất kỳ đâu bằng lệnh:
gitlab-mcp-serverSử dụng với npx (không cần cài đặt)
Bạn cũng có thể chạy trực tiếp bằng npx mà không cần cài đặt global:
npx -y gitlab-mcp-serverLưu ý: Nếu package chưa được publish lên npm, bạn có thể sử dụng npx với đường dẫn local:
npx -y /path/to/mcp_tsCấu hình
Copy file
env.examplethành.env:
cp env.example .envChỉnh sửa file
.envvà thêm GitLab token của bạn:
GITLAB_TOKEN=your_gitlab_personal_access_token_here
GITLAB_URL=https://gitlab.com/api/v4Đối với GitLab self-hosted, thay đổi GITLAB_URL thành URL của instance của bạn.
Sử dụng
Build project
npm run buildChạy server
npm startHoặc chạy ở chế độ development với auto-reload:
npm run devType checking
npm run type-checkCấu hình MCP Client
Claude Desktop
Thêm cấu hình sau vào file MCP settings của Claude Desktop (thường ở ~/Library/Application Support/Claude/claude_desktop_config.json trên macOS hoặc %APPDATA%\Claude\claude_desktop_config.json trên Windows):
Tùy chọn 1: Sử dụng npx (khuyến nghị, không cần cài đặt global):
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "gitlab-mcp-server"],
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Tùy chọn 2: Nếu đã cài đặt global:
{
"mcpServers": {
"gitlab": {
"command": "gitlab-mcp-server",
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Tùy chọn 3: Sử dụng đường dẫn local:
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/mcp_ts/dist/index.js"],
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Cursor IDE
Thêm cấu hình vào file MCP settings của Cursor:
Tùy chọn 1: Sử dụng npx (khuyến nghị, không cần cài đặt global):
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "gitlab-mcp-server"],
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Tùy chọn 2: Nếu đã cài đặt global:
{
"mcpServers": {
"gitlab": {
"command": "gitlab-mcp-server",
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Tùy chọn 3: Sử dụng đường dẫn local:
{
"mcpServers": {
"gitlab": {
"command": "node",
"args": ["/path/to/mcp_ts/dist/index.js"],
"env": {
"GITLAB_TOKEN": "your_gitlab_token_here",
"GITLAB_URL": "https://gitlab.com/api/v4"
}
}
}
}Ví dụ sử dụng
Liệt kê projects
{
"tool": "list_projects",
"arguments": {
"search": "my-project",
"owned": true
}
}Tạo issue
{
"tool": "create_issue",
"arguments": {
"projectId": "123",
"title": "Bug fix needed",
"description": "This is a bug that needs to be fixed",
"labels": "bug,urgent"
}
}Đọc file từ repository
{
"tool": "get_file",
"arguments": {
"projectId": "group/project",
"filePath": "src/index.ts",
"ref": "main"
}
}Cấu trúc dự án
mcp_ts/
├── src/
│ ├── index.ts # Entry point, MCP server setup
│ ├── config.ts # Configuration management
│ ├── gitlab/
│ │ ├── client.ts # GitLab API client wrapper
│ │ ├── projects.ts # Project operations
│ │ ├── issues.ts # Issue operations
│ │ ├── mergeRequests.ts # MR operations
│ │ └── files.ts # File operations
│ └── tools/
│ ├── projectTools.ts # MCP tools for projects
│ ├── issueTools.ts # MCP tools for issues
│ ├── mrTools.ts # MCP tools for merge requests
│ └── fileTools.ts # MCP tools for files
├── package.json
├── tsconfig.json
├── env.example
└── README.mdPhát triển
Thêm tool mới
Tạo function trong module tương ứng trong
src/gitlab/Thêm tool definition vào file tương ứng trong
src/tools/Thêm handler trong function
handle*Tooltương ứngTool sẽ tự động được đăng ký trong MCP server
Error Handling
Tất cả các GitLab API calls đều được wrap với error handling. Errors sẽ được chuyển đổi thành messages dễ hiểu và trả về cho client.
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
- 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/dangvusontung/mcp-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server