# io.github.yifanyifan897645/git-summary (npm · git-summary-mcp)

Git repo intelligence: summaries, blame, changelogs, branch health, and history search

- Trust score: 66/100 (medium)
- Change this week: +20
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `git-summary-mcp`: 66/100 (this document), [markdown](https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp.md), [page](https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp)

## Channel facts

- Registry: `npm`
- Package: `git-summary-mcp`
- Version: `0.1.2`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (99 of 103), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (99 of 103), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 101 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 536 tokens (~89/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add yifanyifan897645-git-summary -- npx -y git-summary-mcp
```

### Codex

```bash
codex mcp add yifanyifan897645-git-summary -- npx -y git-summary-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "yifanyifan897645-git-summary": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "git-summary-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add yifanyifan897645-git-summary --command npx --arg -y --arg git-summary-mcp
```

### Hermes

```yaml
mcp_servers:
  yifanyifan897645-git-summary:
    command: "npx"
    args: ["-y", "git-summary-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "yifanyifan897645-git-summary": {
      "command": "npx",
      "args": [
        "-y",
        "git-summary-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 66, +61)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-07-31 (score 5, −23)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `git_summary` (~73 tokens)

Get a structured overview of a Git repository: current branch, recent commits, contributors, and repo stats. Works on any local Git repo.

Input parameters:

- `commit_count` (number): Number of recent commits to include (default 20)
- `repo_path` (string): Path to the Git repository (defaults to current working directory)

### `git_changes` (~107 tokens)

Get a summary of changes in a commit range: what files changed, who changed them, and a diff stat. Useful for understanding what happened between two points in history.

Input parameters:

- `max_commits` (number): Max commits to analyze (default 30)
- `range` (string): Git commit range, e.g. 'main..feature' or 'HEAD~5..HEAD' or a tag range
- `repo_path` (string): Path to the Git repository (defaults to cwd)

### `git_blame` (~104 tokens)

Analyze who wrote each line of a file, when, and in which commit. Get top contributors and ownership breakdown. Optionally limit to a line range.

Input parameters:

- `end_line` (number): End line number (optional, for partial blame)
- `file` (string, required): File path relative to repo root
- `repo_path` (string): Path to the Git repository (defaults to cwd)
- `start_line` (number): Start line number (optional, for partial blame)

### `git_changelog` (~105 tokens)

Auto-generate a changelog from Git commits. Groups commits by type (feat, fix, docs, etc.) using conventional commit format. Specify a range or get the full log.

Input parameters:

- `from` (string): Start commit/tag (e.g. 'v1.0.0')
- `repo_path` (string): Path to the Git repository (defaults to cwd)
- `to` (string): End commit/tag (e.g. 'v2.0.0')

### `git_branch_health` (~55 tokens)

Analyze all local branches: find stale branches, merged branches ready for cleanup, and branches that are ahead/behind. Helps keep your repo tidy.

Input parameters:

- `repo_path` (string): Path to the Git repository (defaults to cwd)

### `git_search` (~92 tokens)

Search through Git history for commits matching a query. Searches both commit messages and code changes (pickaxe search). Find when a change was introduced or a bug was created.

Input parameters:

- `max_results` (number): Maximum results to return (default 20)
- `query` (string, required): Search term to find in commit messages or code changes
- `repo_path` (string): Path to the Git repository (defaults to cwd)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/git-summary-mcp
- Socket report: https://socket.dev/npm/package/git-summary-mcp
- Repository: https://github.com/yifanyifan897645/git-summary-mcp
- Changelog RSS feed: https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/yifanyifan897645-git-summary/git-summary-mcp
