npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@evalin8/mcp-gitlab-server

v1.0.5

Published

MCP server that offers Git (branch/commit/push via git CLI) + GitLab issue creation.

Downloads

61

Readme

GitLab MCP Server

An MCP server that provides Git workflow automation and GitLab integration for AI assistants.

Features

  • Git Operations: Create branches, commit changes, and push via git CLI
  • GitLab Integration: Create issues via GitLab REST API
  • Automated Workflow: Streamline development workflow with AI assistance
  • Flexible Configuration: Support for GitLab.com and self-hosted instances

Transport: stdio
Runtime: Node.js 18+

Installation

Using NPX (Recommended)

npx @evalin8/mcp-gitlab-server

Global Installation

npm install -g @evalin8/mcp-gitlab-server
# or: pnpm add -g @evalin8/mcp-gitlab-server

Local Installation

npm install @evalin8/mcp-gitlab-server
npx @evalin8/mcp-gitlab-server

Setup

GitLab Personal Access Token

  1. Go to GitLab → SettingsAccess Tokens
  2. Create a new token with these scopes:
    • api - Full API access
    • read_user - Read user information
    • read_repository - Read repository content
  3. Copy the token (starts with glpat_)

Environment Configuration

Create a .env file in your project root or set environment variables:

GITLAB_HOST=https://gitlab.com/api/v4
GITLAB_TOKEN=glpat_xxxxxxxxxxxxxxxxx

Note: GITLAB_HOST should include the full API path ending with /api/v4. For self-hosted GitLab, use https://your-gitlab.company.com/api/v4.

MCP Client Integration

Add the following configuration to your MCP client:

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor/VSCode/Other MCP Clients

Add to your MCP settings configuration

{
    "mcpServers": {
        "gitlab": {
            "command": "npx",
            "args": ["-y", "@evalin8/mcp-gitlab-server"],
            "env": {
                "GITLAB_HOST": "https://gitlab.com/api/v4",
                "GITLAB_TOKEN": "glpat_your_token_here"
            }
        }
    }
}

Note: Restart your MCP client after saving the configuration.

Available Tools

Git Operations

git_create_branch

Create and checkout a new branch

  • repoPath: string (optional; defaults to current directory)
  • branchName: string (required)
  • fromRef: string (optional; e.g., "origin/main")
  • setUpstream: boolean (optional; default: true)

git_commit_push

Commit all changes and push to branch

  • repoPath: string (required)
  • message: string (required)
  • branch: string (required)

GitLab Operations

gitlab_create_issue

Create a new issue in GitLab project

  • project: string (required; numeric ID recommended)
  • title: string (required)
  • description: string (optional)
  • labels: string[] (optional)
  • assigneeIds: number[] (optional)
  • milestoneId: number (optional)
  • confidential: boolean (optional)

Getting Project ID

To find your GitLab project ID:

  1. Go to your GitLab project page
  2. The numeric ID is displayed under the project name
  3. Use this numeric ID (e.g., 12345) not the project path

Example Usage

import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
import { McpClient } from "@modelcontextprotocol/sdk/client/mcp.js";

async function example() {
    const transport = new StdioClientTransport({
        command: "npx",
        args: ["-y", "@evalin8/mcp-gitlab-server"],
    });
    const client = new McpClient(transport);
    await client.connect();

    // Create a feature branch
    await client.callTool("git_create_branch", {
        repoPath: "/path/to/repo",
        branchName: "feat/ai-integration",
        fromRef: "origin/main",
    });

    // Make changes, then commit and push
    await client.callTool("git_commit_push", {
        repoPath: "/path/to/repo",
        message: "feat: add AI integration",
        branch: "feat/ai-integration",
    });

    // Create a GitLab issue
    await client.callTool("gitlab_create_issue", {
        project: "12345",
        title: "Review AI integration feature",
        description: "Please review the new AI integration implementation",
    });

    await client.close();
}

Troubleshooting

GitLab API Issues

  • 404 Error: Ensure GITLAB_HOST includes the full API path (e.g., https://gitlab.com/api/v4) and use numeric project ID
  • 401 Error: Verify your token has api scope and is correctly set
  • 403 Error: Check if you have sufficient permissions for the project

Git Operations

  • Push hangs: Set setUpstream: false or configure Git credentials/SSH
  • Authentication required: This server sets GIT_TERMINAL_PROMPT=0 to avoid interactive prompts

General Issues

  • Server not responding: Check that the server process is running
  • Environment variables: Ensure .env file is in the correct location
  • Node.js version: Requires Node.js 18 or higher

Development

Build

npm run build

Development Mode

npm run dev

Watch Mode

npm run start

Environment Variables

  • GITLAB_HOST: GitLab API URL including /api/v4 path (e.g., https://gitlab.com/api/v4 or https://gitlab.company.com/api/v4) - defaults to https://gitlab.com/api/v4
  • GITLAB_TOKEN: Your GitLab personal access token (required)

License

MIT License - Copyright (c) 2025 Eva

This MCP server is licensed under the MIT License. Feel free to use, modify, and distribute according to the license terms.