-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@rethunk/mcp-multi-root-git",
"version": "2.2.0",
"description": "MCP stdio server: multi-root git status, inventory, and HEAD parity checks. Generic tools usable by any workspace.",
"type": "module",
"private": false,
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"git-mcp-presets.schema.json",
"docs/install.md",
"docs/mcp-tools.md",
"AGENTS.md",
"CHANGELOG.md",
"HUMANS.md",
"README.md",
"LICENSE"
],
"bin": {
"mcp-multi-root-git": "dist/server.js"
},
"exports": {
".": {
"import": "./dist/server.js"
}
},
"scripts": {
"build": "rimraf dist && tsc",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "bun test src/",
"prepublishOnly": "bun run build && bun run check && bun run test",
"setup-hooks": "git config core.hooksPath .githooks"
},
"keywords": [
"mcp",
"git",
"multi-root",
"model-context-protocol",
"stdio"
],
"author": "Rethunk-AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Rethunk-AI/mcp-multi-root-git.git"
},
"bugs": {
"url": "https://github.com/Rethunk-AI/mcp-multi-root-git/issues"
},
"homepage": "https://github.com/Rethunk-AI/mcp-multi-root-git#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"fastmcp": "^3.35.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/node": "^22.19.17",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
}
}