Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.Dave-London/git

NPM · @PARETOOLS/GIT · SCANNED AUG 3

Structured git operations (status, log, diff, branch, show) as typed JSON.

Available components

+34 this week 80 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency97
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Cryptographically verified build provenance (signed, bound to Dave-London/Pare). View diagnostics → Pass
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 4 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1444 tokens (~96/item across 15 items; 15 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @paretools/git

# add to Claude Code
claude mcp add dave-london-git -- npx -y @paretools/git
# add to Codex CLI
codex mcp add dave-london-git -- npx -y @paretools/git
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dave-london-git": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@paretools/git"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add dave-london-git --command npx --arg -y --arg @paretools/git
# ~/.hermes/config.yaml
mcp_servers:
  dave-london-git:
    command: "npx"
    args: ["-y", "@paretools/git"]
// mcp.json
{
  "mcpServers": {
    "dave-london-git": {
      "command": "npx",
      "args": [
        "-y",
        "@paretools/git"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +74
    • Install scripts: unverified → pass security
    • Provenance: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • The attested source repository moved: Dave-London/Pare security
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 1 Aug 26 −1
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −20
    • Malware scan: pass → unverified security
    • Dependency health: partial → unverified functional
  • 30 Jul 26 −20
    • Tool coverage: 100 → unverified functional
    • Dependency health: unverified → partial functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@paretools/[email protected]

Provenance verified

Ecosystem: npm · Outcome: verified

Reason: verified

Source repo:
Dave-London/Pare
Certificate issuer:
https://token.actions.githubusercontent.com
Certificate SAN:
https://github.com/Dave-London/Pare/.github/workflows/release.yml@refs/heads/main
Rekor log index:
949168484
Predicate type:
https://slsa.dev/provenance/v1
Subject digest:
sha512:37ff8c1a3c9b63b1278b7f99df89862e1c3cfbefcccafa07b7d0179d6dad9ee2d4a92d89c8de41a1758464cc5c74182c855d51219893ec1670b8e17c8
Discovery method:
attestation_endpoint
Dependencies 95 packages

95 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 15 exposed · ~1,396 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
add ~81

Stages files for commit. Returns structured data with count and list of staged files. Use instead of running `git add` in the terminal.

NameTypeReqDescription
allbooleanStage all changes (git add -A)
filesarrayFile paths to stage (required unless all is true)
pathstringRepository path (default: cwd)
NameTypeReqDescription
filesarrayyes
stagednumberyes

No examples provided.

blame ~129

Shows commit annotations for a file, grouped by commit. Returns structured blame data with deduplicated commit metadata (hash, author, date) and their attributed lines. Use instead of running `git blame` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
endLinenumberEnd line number for blame range
filestringyesFile path to blame
pathstringRepository path (default: cwd)
startLinenumberStart line number for blame range
NameTypeReqDescription
commitsyes
filestringyes
totalLinesnumberyes

No examples provided.

branch ~106

Lists, creates, or deletes branches. Returns structured branch data. Use instead of running `git branch` in the terminal.

NameTypeReqDescription
allbooleanInclude remote branches
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
createstringCreate a new branch with this name
deletestringDelete branch with this name
pathstringRepository path (default: cwd)
NameTypeReqDescription
branchesyes
currentstringyes

No examples provided.

checkout ~85

Switches branches or restores files. Returns structured data with ref, previous ref, and whether a new branch was created. Use instead of running `git checkout` in the terminal.

NameTypeReqDescription
createbooleanCreate a new branch (-b)
pathstringRepository path (default: cwd)
refstringyesBranch name, tag, or commit to checkout
NameTypeReqDescription
createdbooleanyes
previousRefstringyes
refstringyes

No examples provided.

commit ~72

Creates a commit with the given message. Returns structured data with hash, message, and change statistics. Use instead of running `git commit` in the terminal.

NameTypeReqDescription
amendbooleanAmend the previous commit
messagestringyesCommit message
pathstringRepository path (default: cwd)
NameTypeReqDescription
deletionsnumberyes
filesChangednumberyes
hashstringyes
hashShortstringyes
insertionsnumberyes
messagestringyes

No examples provided.

diff ~129

Returns file-level diff statistics as structured data. Use full=true for patch content. Use instead of running `git diff` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
filestringLimit diff to a specific file
fullbooleanInclude full patch content in chunks
pathstringRepository path (default: cwd)
refstringCompare against a specific ref (branch, tag, commit)
stagedbooleanShow staged changes (--cached)
NameTypeReqDescription
filesarrayyes
totalAdditionsnumber
totalDeletionsnumber
totalFilesnumberyes

No examples provided.

log ~111

Returns commit history as structured data. Use instead of running `git log` in the terminal.

NameTypeReqDescription
authorstringFilter by author name or email
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
maxCountnumberNumber of commits to return (default: 10)
pathstringRepository path (default: cwd)
refstringBranch, tag, or commit to start from
NameTypeReqDescription
commitsarrayyes
totalnumberyes

No examples provided.

pull ~103

Pulls changes from a remote repository. Returns structured data with success status, summary, change statistics, and any conflicts. Use instead of running `git pull` in the terminal.

NameTypeReqDescription
branchstringBranch to pull (default: current tracking branch)
pathstringRepository path (default: cwd)
rebasebooleanUse rebase instead of merge (--rebase)
remotestringRemote name (default: "origin")
NameTypeReqDescription
conflictsarrayyes
deletionsnumberyes
filesChangednumberyes
insertionsnumberyes
successbooleanyes
summarystringyes

No examples provided.

push ~108

Pushes commits to a remote repository. Returns structured data with success status, remote, branch, and summary. Use instead of running `git push` in the terminal.

NameTypeReqDescription
branchstringBranch to push (default: current branch)
forcebooleanForce push (--force)
pathstringRepository path (default: cwd)
remotestringRemote name (default: "origin")
setUpstreambooleanSet upstream tracking (-u)
NameTypeReqDescription
branchstringyes
remotestringyes
successbooleanyes
summarystringyes

No examples provided.

remote ~73

Lists remote repositories with fetch and push URLs. Returns structured remote data. Use instead of running `git remote -v` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
pathstringRepository path (default: cwd)
NameTypeReqDescription
remotesyes
totalnumberyes

No examples provided.

show ~86

Shows commit details and diff statistics for a given ref. Use instead of running `git show` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
pathstringRepository path (default: cwd)
refstringCommit hash, branch, or tag (default: HEAD)
NameTypeReqDescription
authorstring
datestring
diffobject
hashstring
hashShortstring
messagestringyes

No examples provided.

stash ~109

Pushes, pops, applies, or drops stash entries. Returns structured result with action, success, and message. Use instead of running `git stash` in the terminal.

NameTypeReqDescription
actionstringyesStash action to perform
indexnumberStash index for pop/apply/drop (e.g., 0 for stash@{0})
messagestringStash message (only used with push action)
pathstringRepository path (default: cwd)
NameTypeReqDescription
actionstringyes
messagestringyes
successbooleanyes

No examples provided.

stash-list ~76

Lists all stash entries with index, message, and date. Returns structured stash data. Use instead of running `git stash list` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
pathstringRepository path (default: cwd)
NameTypeReqDescription
stashesyes
totalnumberyes

No examples provided.

status ~52

Returns the working tree status as structured data (branch, staged, modified, untracked, conflicts). Use instead of running `git status` in the terminal.

NameTypeReqDescription
pathstringRepository path (default: cwd)
NameTypeReqDescription
aheadnumber
behindnumber
branchstringyes
cleanbooleanyes
conflictsarrayyes
deletedarrayyes
modifiedarrayyes
stagedarrayyes
untrackedarrayyes
upstreamstring

No examples provided.

tag ~76

Lists tags sorted by creation date. Returns structured tag data with name, date, and message. Use instead of running `git tag` in the terminal.

NameTypeReqDescription
compactbooleanAuto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
pathstringRepository path (default: cwd)
NameTypeReqDescription
tagsyes
totalnumberyes

No examples provided.