@rethunk/mcp-multi-root-git 1.0.0
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/AGENTS.md +53 -0
- package/HUMANS.md +115 -0
- package/LICENSE +21 -0
- package/README.md +25 -0
- package/dist/repo-paths.js +26 -0
- package/dist/server/git-inventory-tool.js +191 -0
- package/dist/server/git-parity-tool.js +149 -0
- package/dist/server/git-status-tool.js +84 -0
- package/dist/server/git.js +165 -0
- package/dist/server/inventory.js +133 -0
- package/dist/server/json.js +41 -0
- package/dist/server/list-presets-tool.js +105 -0
- package/dist/server/presets-resource.js +47 -0
- package/dist/server/presets.js +175 -0
- package/dist/server/roots.js +134 -0
- package/dist/server/schemas.js +22 -0
- package/dist/server/tools.js +12 -0
- package/dist/server.js +11 -0
- package/docs/install.md +199 -0
- package/docs/mcp-tools.md +51 -0
- package/git-mcp-presets.schema.json +79 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rethunk/mcp-multi-root-git",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP stdio server: multi-root git status, inventory, and HEAD parity checks. Generic tools usable by any workspace.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"packageManager": "bun@1.3.11",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=22.0.0"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"git-mcp-presets.schema.json",
|
|
14
|
+
"docs/install.md",
|
|
15
|
+
"docs/mcp-tools.md",
|
|
16
|
+
"AGENTS.md",
|
|
17
|
+
"HUMANS.md",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"bin": {
|
|
22
|
+
"mcp-multi-root-git": "dist/server.js"
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/server.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "rimraf dist && tsc",
|
|
31
|
+
"check": "biome check .",
|
|
32
|
+
"check:fix": "biome check --write .",
|
|
33
|
+
"test": "bun test src/",
|
|
34
|
+
"prepublishOnly": "bun run build && bun run check && bun run test",
|
|
35
|
+
"setup-hooks": "git config core.hooksPath .githooks"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"mcp",
|
|
39
|
+
"git",
|
|
40
|
+
"multi-root",
|
|
41
|
+
"model-context-protocol",
|
|
42
|
+
"stdio"
|
|
43
|
+
],
|
|
44
|
+
"author": "Rethunk-AI",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/Rethunk-AI/mcp-multi-root-git.git"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/Rethunk-AI/mcp-multi-root-git/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/Rethunk-AI/mcp-multi-root-git#readme",
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"fastmcp": "^3.35.0",
|
|
59
|
+
"zod": "^4.3.6"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@biomejs/biome": "^2.4.10",
|
|
63
|
+
"@types/node": "^22.0.0",
|
|
64
|
+
"rimraf": "^6.0.1",
|
|
65
|
+
"typescript": "^6.0.2"
|
|
66
|
+
}
|
|
67
|
+
}
|