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

@masuratech/gitlab-mcp-server

v1.0.0

Published

GitLab MCP server for Claude Code — manage projects, issues, merge requests, pipelines, and files

Readme


I love GitLab so much I built a whole MCP server for it. Now my AI assistant manages my merge requests, and honestly, it reviews code faster than my teammates. You're welcome. — Allan Mugarura, creator


Tools (25)

| Category | Tools | |----------|-------| | Projects | list_projects, get_project | | Issues | list_issues, get_issue, create_issue, update_issue, comment_on_issue | | Merge Requests | list_merge_requests, get_merge_request, create_merge_request, get_merge_request_changes, comment_on_merge_request, approve_merge_request, merge_merge_request | | Pipelines | list_pipelines, get_pipeline, list_pipeline_jobs, retry_pipeline | | Repository | list_branches, create_branch, get_file, list_tree, create_or_update_file | | Users | get_current_user, search_users |

Quick Start

1. Get a GitLab Personal Access Token

Go to GitLab → Settings → Access Tokens and create a token with the api scope.

2. Install

npm install -g @masuratech/gitlab-mcp-server

Or clone and build from source:

git clone https://gitlab.com/masuratech/gitlab-mcp-server.git
cd gitlab-mcp-server
npm install
npm run build

3. Register with Claude Code

claude mcp add gitlab \
  --env GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxx \
  -- npx @masuratech/gitlab-mcp-server

Or if built from source:

claude mcp add gitlab \
  --env GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxx \
  -- node /path/to/gitlab-mcp-server/dist/index.js

4. Use

Start a Claude Code session and ask things like:

  • "List my GitLab projects"
  • "Show open merge requests in mygroup/myrepo"
  • "Create an issue titled 'Fix login bug' in project 123"
  • "What's the status of the latest pipeline?"

Configuration

| Environment Variable | Required | Default | Description | |---------------------|----------|---------|-------------| | GITLAB_PERSONAL_ACCESS_TOKEN | Yes | — | Your GitLab PAT with api scope | | GITLAB_API_URL | No | https://gitlab.com/api/v4 | Custom GitLab instance URL |

Self-hosted GitLab

claude mcp add gitlab \
  --env GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxx \
  --env GITLAB_API_URL=https://gitlab.yourcompany.com/api/v4 \
  -- npx @masuratech/gitlab-mcp-server

Development

npm install
npm run dev    # watch mode
npm run build  # one-shot compile
npm start      # run the server

Support

I gave you 25 tools for free. All I'm asking for is one dollar. One. That's less than the mass-produced coffee you're drinking right now. Come on.

License

MIT — Masura Tech Ltd

Built with love (and mass-produced coffee) in Kampala by Masura Tech.