The GitLab MCP Server is a versatile tool designed to enhance project management and file operations using the GitLab API. It offers features such as automatic branch creation, comprehensive error handling, and the preservation of Git history during operations. Users can perform batch operations on multiple files, making it efficient for large-scale project updates. Key functionalities include creating or updating files, pushing multiple files in a single commit, searching for GitLab projects, and managing repositories. Additionally, it supports creating issues and merge requests, making it a comprehensive solution for managing GitLab projects effectively.
Create or update a single file in a project. Inputs: project_id (string), file_path (string), content (string), commit_message (string), branch (string), previous_path (optional string). Returns: File content and commit details.
Push multiple files in a single commit. Inputs: project_id (string), branch (string), files (array), commit_message (string). Returns: Updated branch reference.
Search for GitLab projects. Inputs: search (string), page (optional number), per_page (optional number). Returns: Project search results.
Create a new GitLab project. Inputs: name (string), description (optional string), visibility (optional string), initialize_with_readme (optional boolean). Returns: Created project details.
Get contents of a file or directory. Inputs: project_id (string), file_path (string), ref (optional string). Returns: File/directory contents.
Create a new issue. Inputs: project_id (string), title (string), description (optional string), assignee_ids (optional number[]), labels (optional string[]), milestone_id (optional number). Returns: Created issue details.
Create a new merge request. Inputs: project_id (string), title (string), description (optional string), source_branch (string), target_branch (string), draft (optional boolean), allow_collaboration (optional boolean). Returns: Created merge request details.
Fork a project. Inputs: project_id (string), namespace (optional string). Returns: Forked project details.
Create a new branch. Inputs: project_id (string), branch (string), ref (optional string). Returns: Created branch reference.
No reviews yet. Be the first to review!
Sign in to join the conversation
After downloading, you can run the MCP server in any client or IDE:
node path/to/downloaded/file.mjs