io.github.Dave-London/pare-git
NPM · @PARETOOLS/GIT · SCANNED AUG 3
Pare Git ג€” Structured git operations (status, log, diff, branch, commit, push) as typed JSON.
Available components
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 Usability81
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1958 tokens (~97/item across 20 items; 20 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
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
claude mcp add dave-london-pare-git -- npx -y @paretools/git
codex mcp add dave-london-pare-git -- npx -y @paretools/git
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"dave-london-pare-git": {
"type": "local",
"command": [
"npx",
"-y",
"@paretools/git"
],
"enabled": true
}
}
} openclaw mcp add dave-london-pare-git --command npx --arg -y --arg @paretools/git
mcp_servers:
dave-london-pare-git:
command: "npx"
args: ["-y", "@paretools/git"] {
"mcpServers": {
"dave-london-pare-git": {
"command": "npx",
"args": [
"-y",
"@paretools/git"
]
}
}
} 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 +75
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Install scripts: unverified → pass ▲ security
- Provenance: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- The attested source repository moved: Dave-London/Pare security
- Schema quality: unverified → excellent ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −23
- 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 −18
- Malware scan: pass → unverified ▼ security
- 29 Jul 26 +22
- Tool coverage: unverified → 100 ▲ functional
- 28 Jul 26 −22
- Tool coverage: 100 → unverified ▼ functional
- First check of Schema quality: unverified functional
- 27 Jul 26 46
First indexed and scored.
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:
- 952352681
- Predicate type:
- https://slsa.dev/provenance/v1
- Subject digest:
- sha512:931f1e043e0ef2b4de69ae6b8a8308a277339843ca339624f01fcd4e84998c855e5db4246355cec83b6f3ce9405b38a3481ea7706c2eed15cf97324c6
- 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.
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.
add Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| all | boolean | — | Stage all changes (git add -A) |
| files | array | — | File paths to stage (required unless all is true) |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| files | array | yes | — |
| staged | number | yes | — |
No examples provided.
blame Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| endLine | number | — | End line number for blame range |
| file | string | yes | File path to blame |
| path | string | — | Repository path (default: cwd) |
| startLine | number | — | Start line number for blame range |
| Name | Type | Req | Description |
|---|---|---|---|
| commits | — | yes | — |
| file | string | yes | — |
| totalLines | number | yes | — |
No examples provided.
branch Git Branch ~106
Lists, creates, or deletes branches. Returns structured branch data. Use instead of running `git branch` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| all | boolean | — | Include remote branches |
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| create | string | — | Create a new branch with this name |
| delete | string | — | Delete branch with this name |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| branches | — | yes | — |
| current | string | yes | — |
No examples provided.
checkout Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| create | boolean | — | Create a new branch (-b) |
| path | string | — | Repository path (default: cwd) |
| ref | string | yes | Branch name, tag, or commit to checkout |
| Name | Type | Req | Description |
|---|---|---|---|
| created | boolean | yes | — |
| previousRef | string | yes | — |
| ref | string | yes | — |
No examples provided.
cherry-pick Git Cherry-Pick ~105
Applies specific commits to the current branch. Returns structured data with applied commits and any conflicts. Use instead of running `git cherry-pick` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| abort | boolean | — | Abort in-progress cherry-pick |
| commits | array | — | Commit hashes to cherry-pick |
| continue | boolean | — | Continue after resolving conflicts |
| noCommit | boolean | — | Apply changes without committing (-n) |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| applied | array | yes | — |
| conflicts | array | yes | — |
| success | boolean | yes | — |
No examples provided.
commit Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| amend | boolean | — | Amend the previous commit |
| message | string | yes | Commit message |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| deletions | number | yes | — |
| filesChanged | number | yes | — |
| hash | string | yes | — |
| hashShort | string | yes | — |
| insertions | number | yes | — |
| message | string | yes | — |
No examples provided.
diff Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| file | string | — | Limit diff to a specific file |
| full | boolean | — | Include full patch content in chunks |
| path | string | — | Repository path (default: cwd) |
| ref | string | — | Compare against a specific ref (branch, tag, commit) |
| staged | boolean | — | Show staged changes (--cached) |
| Name | Type | Req | Description |
|---|---|---|---|
| files | array | yes | — |
| totalAdditions | number | — | — |
| totalDeletions | number | — | — |
| totalFiles | number | yes | — |
No examples provided.
log Git Log ~111
Returns commit history as structured data. Use instead of running `git log` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| author | string | — | Filter by author name or email |
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| maxCount | number | — | Number of commits to return (default: 10) |
| path | string | — | Repository path (default: cwd) |
| ref | string | — | Branch, tag, or commit to start from |
| Name | Type | Req | Description |
|---|---|---|---|
| commits | array | yes | — |
| total | number | yes | — |
No examples provided.
merge Git Merge ~108
Merges a branch into the current branch. Returns structured data with merge status, fast-forward detection, conflicts, and commit hash. Use instead of running `git merge` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| abort | boolean | — | Abort in-progress merge (--abort) |
| branch | string | yes | Branch to merge |
| message | string | — | Custom merge commit message |
| noFf | boolean | — | Force merge commit (--no-ff) |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| branch | string | yes | — |
| commitHash | string | — | — |
| conflicts | array | yes | — |
| fastForward | boolean | yes | — |
| merged | boolean | yes | — |
No examples provided.
pull Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| branch | string | — | Branch to pull (default: current tracking branch) |
| path | string | — | Repository path (default: cwd) |
| rebase | boolean | — | Use rebase instead of merge (--rebase) |
| remote | string | — | Remote name (default: "origin") |
| Name | Type | Req | Description |
|---|---|---|---|
| conflicts | array | yes | — |
| deletions | number | yes | — |
| filesChanged | number | yes | — |
| insertions | number | yes | — |
| success | boolean | yes | — |
| summary | string | yes | — |
No examples provided.
push Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| branch | string | — | Branch to push (default: current branch) |
| force | boolean | — | Force push (--force) |
| path | string | — | Repository path (default: cwd) |
| remote | string | — | Remote name (default: "origin") |
| setUpstream | boolean | — | Set upstream tracking (-u) |
| Name | Type | Req | Description |
|---|---|---|---|
| branch | string | yes | — |
| remote | string | yes | — |
| success | boolean | yes | — |
| summary | string | yes | — |
No examples provided.
rebase Git Rebase ~112
Rebases the current branch onto a target branch. Supports abort and continue for conflict resolution. Returns structured data with success status, branch info, conflicts, and rebased commit count. Use instead of running `git rebase` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| abort | boolean | — | Abort in-progress rebase |
| branch | string | — | Target branch to rebase onto (required unless abort/continue) |
| continue | boolean | — | Continue after conflict resolution |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| branch | string | yes | — |
| conflicts | array | yes | — |
| current | string | yes | — |
| rebasedCommits | number | — | — |
| success | boolean | yes | — |
No examples provided.
remote Git Remote ~73
Lists remote repositories with fetch and push URLs. Returns structured remote data. Use instead of running `git remote -v` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| remotes | — | yes | — |
| total | number | yes | — |
No examples provided.
reset Git Reset ~93
Unstages files by resetting them to a ref (default: HEAD). Returns structured data with the ref and list of unstaged files. Use instead of running `git reset` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| files | array | — | File paths to unstage (omit to unstage all) |
| path | string | — | Repository path (default: cwd) |
| ref | string | — | Ref to reset to (default: HEAD) |
| Name | Type | Req | Description |
|---|---|---|---|
| ref | string | yes | — |
| unstaged | array | yes | — |
No examples provided.
restore Git Restore ~96
Discards working tree changes or restores files from a specific commit. Returns structured data with restored files, source ref, and staged flag. Use instead of running `git restore` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| files | array | yes | File paths to restore |
| path | string | — | Repository path (default: cwd) |
| source | string | — | Restore from specific ref (--source) |
| staged | boolean | — | Restore staged changes (--staged) |
| Name | Type | Req | Description |
|---|---|---|---|
| restored | array | yes | — |
| source | string | yes | — |
| staged | boolean | yes | — |
No examples provided.
show Git Show ~86
Shows commit details and diff statistics for a given ref. Use instead of running `git show` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| path | string | — | Repository path (default: cwd) |
| ref | string | — | Commit hash, branch, or tag (default: HEAD) |
| Name | Type | Req | Description |
|---|---|---|---|
| author | string | — | — |
| date | string | — | — |
| diff | object | — | — |
| hash | string | — | — |
| hashShort | string | — | — |
| message | string | yes | — |
No examples provided.
stash Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Stash action to perform |
| index | number | — | Stash index for pop/apply/drop (e.g., 0 for stash@{0}) |
| message | string | — | Stash message (only used with push action) |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | — |
| message | string | yes | — |
| success | boolean | yes | — |
No examples provided.
stash-list Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| stashes | — | yes | — |
| total | number | yes | — |
No examples provided.
status Git Status ~52
Returns the working tree status as structured data (branch, staged, modified, untracked, conflicts). Use instead of running `git status` in the terminal.
| Name | Type | Req | Description |
|---|---|---|---|
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| ahead | number | — | — |
| behind | number | — | — |
| branch | string | yes | — |
| clean | boolean | yes | — |
| conflicts | array | yes | — |
| deleted | array | yes | — |
| modified | array | yes | — |
| staged | array | yes | — |
| untracked | array | yes | — |
| upstream | string | — | — |
No examples provided.
tag Git 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.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema. |
| path | string | — | Repository path (default: cwd) |
| Name | Type | Req | Description |
|---|---|---|---|
| tags | — | yes | — |
| total | number | yes | — |
No examples provided.