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

git-vertex-mcp

v0.5.3

Published

Git Vertex — local MCP server exposing your Git repositories to AI agents (Claude Code, Cursor, Copilot…). Read-mostly (writes limited to conflict resolution, disable with --read-only), no cloud.

Readme

git-vertex-mcp

Local MCP server over your Git repositories — the Git Vertex companion for AI agents. Connect Claude Code, Cursor, Copilot or any MCP client to your real Git history (status, commit graph, branches, diffs, blame) and let it help resolve conflicts: a structured view of the ongoing merge/rebase with both sides labelled by branch and commit subject, surgical per-file resolution, continue/abort. Runs entirely on your machine over stdio. No cloud, no telemetry — and writes never touch history.

Requirements

git 2.28 or newer. The server itself needs nothing more recent; the 2.40 recommendation elsewhere in the project only applies to the conflict prediction, which lives in the app and the extension, not here.

Install & connect

# Claude Code
claude mcp add git-vertex -- npx -y git-vertex-mcp

# or from a checkout of this repo
claude mcp add git-vertex -- node /path/to/git-vertex/mcp/bin/gv-mcp.mjs

For other clients (Cursor, etc.), register the command npx -y git-vertex-mcp as a stdio MCP server.

By default every tool operates on the client's current working directory. Point it elsewhere per call (each tool takes a repo path) or globally with the GV_REPO environment variable.

Tools

| Tool | What it returns | |---|---| | git_status | Current branch, upstream ahead/behind, staged/unstaged/untracked/conflicted files | | git_log | Compact history (hash, parents, author, date, refs, subject) with author/date/path filters | | git_branches | Local + remote branches, tip, tracking state, current branch marked | | git_diff | Staged, unstaged, or <a>..<b> diff — full patch or --stat summary | | git_show | One commit: metadata, message, per-file +/- stats, optional patch | | git_blame | Per-line last-change attribution for a file or line range | | predict_conflicts | DRY-RUN merge (git merge-tree): would merging X into Y conflict, and on which files — without touching the working tree or any ref | | git_pickaxe | The commits that added/removed a string or regex (git log -S/-G) — "when was this function introduced/deleted?" | | find_lost_work | HEAD reflog + dangling commits: recover work "lost" to resets, rebases or deleted branches | | git_bisect ✏️ | Drive a bisect session (start/good/bad/skip/reset/log) — agents build, test and judge each step to find the culprit commit | | git_conflicts | Ongoing merge/rebase/cherry-pick/revert: operation kind, both sides labelled (branch + commit subject — during a rebase, HEAD is the NEW BASE), conflicted files, optional marker-annotated file content | | resolve_conflict ✏️ | Write the resolved content of ONE conflicted file and stage it — refused if the file isn't conflicted or if markers remain | | continue_operation ✏️ | git <op> --continue once everything is resolved (editor suppressed) | | abort_operation ✏️ | git <op> --abort — restore the pre-operation state | | open_in_git_vertex 🖥️ | Open the Git Vertex desktop app on the repo: commit graph, a commit's details, or the 3-way conflict resolver — optionally with an agent-proposed resolution preloaded for the user to review | | propose_commit 🖥️ | Open the staging view with an agent-proposed commit message preloaded (and an optional proposed file selection) — the user reviews, stages and commits themselves | | propose_rebase_plan 🖥️ | Open the visual interactive-rebase editor with an agent-proposed plan (squash/fixup/reword/drop + new messages) preloaded — the user reviews and launches it themselves | | generate_commit_message 🎲 | Draft a commit message from the staged diff using the MCP client's own LLM (sampling) — no API key on this server, works with any provider; falls back to returning the diff if the client doesn't support sampling |

Design notes

  • Writes are surgical and opt-out — the only mutating tools (✏️) operate on the CURRENT conflict state: they can write a conflicted file, stage it, and continue/abort the operation. They can never rewrite history, push, or touch a non-conflicted file. Run with --read-only (or GV_MCP_READONLY=1) to disable them entirely: your repository, your rules.
  • The agent proposes, the human disposes — the 🖥️ tools hand off to the Git Vertex desktop app (via the gitgui:// scheme, so the app must be installed) with the agent's proposal preloaded into the real UI. They write nothing to the repository: no staging, no commit, no rewrite happens until the user acts in the app.
  • Provider-agnostic AIgenerate_commit_message uses MCP sampling: the text is generated by whatever model the client runs (Claude, GPT, Gemini, a local model…). This server needs no AI credentials at all.
  • Outputs are truncated at 24k chars to stay friendly to model context windows.
  • Ref/path/author arguments are validated so they can't smuggle git options.

Development

cd mcp
npm install
npm run dev        # tsx, stdio on the terminal
npm run build      # → dist/
npm test           # end-to-end suite: builds, regenerates fixture repos
                   # (tests/fixtures/, git-ignored) and drives every tool
                   # through a real stdio MCP client (tests/run-tests.mjs)

The suite covers all tools, --read-only, GV_REPO, argv-injection and path-traversal guards, a full bisect session, and MCP sampling (simulated client). The desktop-handoff happy paths (gitgui://) are validation-only — they would open the app. Two KNOWN-BUG (locale fr) tests pin the current behaviour under a French git locale; invert them when fixing it.