gitlab-clone-mcp-server

skmprb/gitlab-clone-mcp-server

3.2

If you are the rightful owner of gitlab-clone-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The GitLab MCP Server is a comprehensive Model Context Protocol server that integrates seamlessly with the GitLab API, enabling users to manage their GitLab workflows through natural language commands.

Tools
  1. create_project

    Create new GitLab projects with custom settings

  2. delete_project

    Permanently delete GitLab projects

  3. update_project

    Modify project name, description, visibility

  4. fork_project

    Fork projects to different namespaces

  5. archive_project

    Archive projects for long-term storage

GitLab MCP Server

PyPI version Python 3.10+ License: MIT

A comprehensive Model Context Protocol (MCP) server that provides seamless GitLab API integration for Claude Desktop and other MCP clients. Manage your entire GitLab workflow through natural language commands - from project creation to repository operations, CI/CD management, and team collaboration.

🚀 Quick Start

# Install with uvx (recommended)
uvx --from gitlab-clone-mcp-server gitlab-mcp

# Or install as a tool
uv tool install gitlab-clone-mcp-server

✨ Key Features

  • Complete GitLab Integration: 46+ tools covering all major GitLab operations
  • Natural Language Interface: Control GitLab through conversational commands
  • Zero Configuration: Works out-of-the-box with your GitLab Personal Access Token
  • Comprehensive Coverage: Projects, repositories, issues, merge requests, CI/CD, and more
  • Local Repository Cloning: Clone repositories directly to your local machine
  • Batch Operations: Perform bulk operations across multiple projects

🛠️ Available Tools (46 Total)

📁 Project Management (12 tools)

ToolDescription
create_projectCreate new GitLab projects with custom settings
delete_projectPermanently delete GitLab projects
update_projectModify project name, description, visibility
fork_projectFork projects to different namespaces
archive_projectArchive projects for long-term storage
unarchive_projectRestore archived projects
list_projectsList all accessible projects with filters
search_projectsSearch projects by name or keywords
get_project_milestonesView project milestones and deadlines
get_project_labelsList all project labels and colors
list_project_hooksView configured webhooks
get_current_userGet current user information and permissions

📝 Issue Management (4 tools)

ToolDescription
get_project_issuesList issues with state filtering
create_issueCreate new issues with descriptions
update_issueModify issue title, description, state
close_issueClose specific issues

🔀 Merge Request Management (2 tools)

ToolDescription
get_merge_requestsList merge requests by state
create_merge_requestCreate new merge requests
merge_merge_requestMerge approved merge requests

📄 File Operations (5 tools)

ToolDescription
create_fileCreate new files with content
update_fileModify existing file content
delete_fileRemove files from repository
get_file_contentRead file contents
get_repository_filesBrowse directory structures

🌿 Repository & Git Operations (15 tools)

ToolDescription
get_project_branchesList all repository branches
create_branchCreate new branches from any reference
delete_branchRemove branches safely
get_commitsView commit history
create_commitCreate commits with multiple file changes
compare_branchesCompare differences between branches
revert_commitRevert specific commits
cherry_pick_commitCherry-pick commits between branches
get_repository_tagsList all repository tags
create_tagCreate release tags
delete_tagRemove tags
clone_repositoryClone single repository locally
clone_group_repositoriesBatch clone all group repositories

🚀 CI/CD Operations (3 tools)

ToolDescription
get_pipelinesMonitor pipeline status
get_pipeline_jobsView individual job details
trigger_pipelineStart new pipeline runs

👥 Groups & Collaboration (3 tools)

ToolDescription
list_groupsList accessible GitLab groups
get_group_membersView group membership
get_current_userGet user profile information

Installation

Using uvx (Recommended)

uvx --from gitlab-clone-mcp-server gitlab-mcp

Using uv

uv tool install gitlab-mcp-server

From source

git clone <repository-url>
cd gitlab-mcp
uv sync

Setup

  1. Get GitLab Personal Access Token:

    • Go to GitLab → Settings → Access Tokens
    • Create token with api scope
    • Copy the token
  2. Set environment variables:

    export GITLAB_TOKEN="your_token_here"
    export GITLAB_URL="https://gitlab.com"  # optional
    
  3. Test the server:

    gitlab-mcp
    

Claude Desktop Configuration

Add to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "gitlab": {
      "command": "uvx",
      "args": [
        "--from", "gitlab-clone-mcp-server",
        "gitlab-mcp"
      ],
      "env": {
        "GITLAB_URL": "https://gitlab.com",
        "GITLAB_TOKEN": "your_gitlab_token_here"
      }
    }
  }
}

💬 Usage Examples

🚀 Project Lifecycle Management

"Create a new private project called 'microservice-api' with description 'REST API service'"
"Fork the kubernetes/dashboard project to my namespace"
"Archive the old legacy-system project"
"Update project 'web-app' visibility to public"
"Delete the test-project-123 permanently"

📋 Issue & Task Management

"Show all open issues in the backend-service project"
"Create a bug report titled 'Login fails on mobile' with detailed description"
"Close issue #45 in project web-frontend"
"Update issue #12 title to 'Critical: Database connection timeout'"

🔄 Code Review & Collaboration

"Create merge request from feature/auth-system to main branch"
"Show all open merge requests in project api-gateway"
"Merge the approved MR #23 in mobile-app project"
"Compare the develop and main branches in project core-lib"

📁 File & Repository Management

"Create a new config.yaml file in project settings with database configuration"
"Update the README.md file in project docs with installation instructions"
"Show me the content of package.json in the frontend project"
"List all files in the src/components directory"
"Delete the deprecated legacy-config.xml file"

🌿 Branch & Version Control

"Create a new feature branch called 'user-authentication' from main"
"Show all branches in the web-application project"
"Delete the completed feature/old-ui branch"
"Revert commit abc123def in the production branch"
"Cherry-pick commit xyz789 from develop to hotfix branch"
"Create release tag v2.1.0 from main branch"

📦 Local Development

"Clone the microservices-platform project to ./local-dev"
"Clone all repositories from the frontend-team group"
"Clone project using SSH to ~/projects/my-app"

🚀 CI/CD Pipeline Management

"Show running pipelines for the deployment project"
"Trigger a new pipeline on the main branch"
"Get details of all jobs in pipeline #456"
"Show failed pipelines in the testing environment"

👥 Team & Group Operations

"List all my GitLab groups and their members"
"Show members of the backend-team group"
"Get my current user permissions and profile"
"Search for projects containing 'microservice' in the name"

🔧 Configuration

Required Environment Variables

VariableDescriptionExample
GITLAB_TOKENPersonal Access Token with API permissionsglpat-xxxxxxxxxxxxxxxxxxxx
GITLAB_URLGitLab instance URL (optional)https://gitlab.com (default)

GitLab Personal Access Token Setup

  1. Navigate to GitLab Settings:

    • Go to GitLab → User Settings → Access Tokens
    • Or visit: https://gitlab.com/-/profile/personal_access_tokens
  2. Create New Token:

    • Name: MCP Server Token
    • Expiration: Set appropriate date (or no expiration)
    • Scopes: Select the following:
      • api - Full API access
      • read_repository - Read repository data
      • write_repository - Write repository data
      • read_user - Read user information
  3. Copy Token: Save the generated token securely

Token Permissions

The token needs these scopes for full functionality:

  • api: Complete API access for all operations
  • read_repository: Clone, browse files, read commits
  • write_repository: Create commits, branches, tags
  • read_user: Get user profile information

🔒 Security Best Practices

  • Never commit tokens to version control
  • Use environment variables for token storage
  • Set token expiration dates when possible
  • Rotate tokens regularly for enhanced security
  • Use minimal required scopes for your use case

🐛 Troubleshooting

Common Issues

❌ "GITLAB_TOKEN environment variable not set"

  • Ensure your token is properly set in environment variables
  • Verify token is not expired

❌ "HTTP Error 401: Unauthorized"

  • Check token has correct permissions/scopes
  • Verify token is valid and not revoked

❌ "HTTP Error 403: Forbidden"

  • Ensure you have access to the requested project/group
  • Check if project is private and you're a member

❌ "Git command not found" (for clone operations)

  • Install Git on your system
  • Ensure Git is in your system PATH

Debug Mode

For debugging, you can test the connection:

# Test your token
curl -H "PRIVATE-TOKEN: your_token_here" "https://gitlab.com/api/v4/user"

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

This project is licensed under the MIT License - see the file for details.

🔗 Related Projects


Made with ❤️ for the GitLab and MCP community