@selfagency/git-mcp 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,6 +15,7 @@ Exposes the full Git workflow to any MCP-compatible AI client — inspect, write
|
|
|
15
15
|
- **Git Flow** — full branching model (feature/release/hotfix/support) without requiring the `git-flow` CLI
|
|
16
16
|
- **Documentation lookup** — search git-scm.com and fetch man pages directly from the LLM
|
|
17
17
|
- **MCP Resources** — URI-addressable read-only views of status, log, branches, and diff
|
|
18
|
+
- **Bundled agent skill** — `skills/git-mcp-workflow/` documents MCP-first Git workflows, recovery, worktrees, releases, and advanced operations for agent users
|
|
18
19
|
- **Multi-repo** — pass `repo_path` per-call or configure a server-level default
|
|
19
20
|
- **Cross-platform** — macOS, Linux, Windows (Git for Windows)
|
|
20
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfagency/git-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A Git MCP server that doesn't suck",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
41
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
42
42
|
"simple-git": "^3.33.0",
|
|
43
43
|
"zod": "^4.3.6"
|
|
44
44
|
}
|