@cyanheads/git-mcp-server 2.4.7 → 2.4.8
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 -1
- package/dist/index.js +18 -22
- package/package.json +19 -23
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-06-18/changelog.mdx) [](https://modelcontextprotocol.io/) [](./LICENSE) [](https://github.com/cyanheads/git-mcp-server/issues) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
package/dist/index.js
CHANGED
|
@@ -4275,38 +4275,34 @@ var init_package = __esm(() => {
|
|
|
4275
4275
|
},
|
|
4276
4276
|
homepage: "https://github.com/cyanheads/git-mcp-server#readme",
|
|
4277
4277
|
scripts: {
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
|
|
4281
|
-
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
|
|
4282
|
-
devcheck: "bun run scripts/devcheck.ts",
|
|
4283
|
-
devdocs: "bun run scripts/devdocs.ts",
|
|
4284
|
-
"//--- Build & Deploy": "",
|
|
4285
|
-
build: "rm -rf dist && bun build ./src/index.ts --outdir ./dist --target node",
|
|
4286
|
-
"build:worker": "rm -rf dist && bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
|
|
4278
|
+
build: "bun build ./src/index.ts --outdir ./dist --target node",
|
|
4279
|
+
"build:worker": "bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
|
|
4287
4280
|
"deploy:dev": "MCP_TRANSPORT_TYPE=http bunx wrangler dev",
|
|
4288
4281
|
"deploy:prod": "MCP_TRANSPORT_TYPE=http bunx wrangler deploy",
|
|
4289
|
-
"//--- Start": "",
|
|
4290
4282
|
start: "bun ./dist/index.js",
|
|
4291
|
-
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
4292
4283
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
4293
|
-
"
|
|
4294
|
-
|
|
4295
|
-
"
|
|
4284
|
+
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
4285
|
+
dev: "bun --watch src/index.ts",
|
|
4286
|
+
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
|
|
4287
|
+
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
|
|
4288
|
+
devdocs: "bun run scripts/devdocs.ts",
|
|
4289
|
+
devcheck: "bun run scripts/devcheck.ts",
|
|
4290
|
+
rebuild: "bun run scripts/clean.ts && bun run build",
|
|
4291
|
+
"docs:generate": "bunx typedoc",
|
|
4296
4292
|
depcheck: "bunx depcheck",
|
|
4297
|
-
format: 'bunx prettier --write "**/*.{ts,js,json,md,html,css}"',
|
|
4298
4293
|
lint: "bunx eslint .",
|
|
4299
4294
|
"lint:fix": "bunx eslint . --fix",
|
|
4300
|
-
prepare: "bunx husky",
|
|
4301
|
-
test: "bun test --config vitest.config.ts",
|
|
4302
|
-
"test:coverage": "bun test --coverage",
|
|
4303
4295
|
typecheck: "bunx tsc --noEmit",
|
|
4304
|
-
|
|
4305
|
-
"docs:generate": "bunx typedoc",
|
|
4296
|
+
tree: "bun run scripts/tree.ts",
|
|
4306
4297
|
"fetch-spec": "bun run scripts/fetch-openapi-spec.ts",
|
|
4298
|
+
format: 'bunx prettier --write "**/*.{ts,js,json,md,html,css}"',
|
|
4299
|
+
prepare: "bunx husky",
|
|
4307
4300
|
inspector: "bunx mcp-inspector --config mcp.json --server git-mcp-server",
|
|
4308
|
-
|
|
4309
|
-
|
|
4301
|
+
test: "bun test --config vitest.config.ts",
|
|
4302
|
+
"test:coverage": "bun test --coverage",
|
|
4303
|
+
audit: "bun audit",
|
|
4304
|
+
"audit:fix": "bun audit --fix",
|
|
4305
|
+
"publish-mcp": "bun scripts/validate-mcp-publish-schema.ts"
|
|
4310
4306
|
},
|
|
4311
4307
|
resolutions: {
|
|
4312
4308
|
"@hono/node-server": "1.19.5",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/git-mcp-server",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.8",
|
|
4
4
|
"mcpName": "io.github.cyanheads/git-mcp-server",
|
|
5
5
|
"description": "A secure and scalable Git MCP server enabling AI agents to perform comprehensive Git version control operations via STDIO and Streamable HTTP.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,38 +29,34 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/cyanheads/git-mcp-server#readme",
|
|
31
31
|
"scripts": {
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
|
|
35
|
-
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
|
|
36
|
-
"devcheck": "bun run scripts/devcheck.ts",
|
|
37
|
-
"devdocs": "bun run scripts/devdocs.ts",
|
|
38
|
-
"//--- Build & Deploy": "",
|
|
39
|
-
"build": "rm -rf dist && bun build ./src/index.ts --outdir ./dist --target node",
|
|
40
|
-
"build:worker": "rm -rf dist && bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
|
|
32
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node",
|
|
33
|
+
"build:worker": "bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
|
|
41
34
|
"deploy:dev": "MCP_TRANSPORT_TYPE=http bunx wrangler dev",
|
|
42
35
|
"deploy:prod": "MCP_TRANSPORT_TYPE=http bunx wrangler deploy",
|
|
43
|
-
"//--- Start": "",
|
|
44
36
|
"start": "bun ./dist/index.js",
|
|
45
|
-
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
46
37
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
38
|
+
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
39
|
+
"dev": "bun --watch src/index.ts",
|
|
40
|
+
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
|
|
41
|
+
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
|
|
42
|
+
"devdocs": "bun run scripts/devdocs.ts",
|
|
43
|
+
"devcheck": "bun run scripts/devcheck.ts",
|
|
44
|
+
"rebuild": "bun run scripts/clean.ts && bun run build",
|
|
45
|
+
"docs:generate": "bunx typedoc",
|
|
50
46
|
"depcheck": "bunx depcheck",
|
|
51
|
-
"format": "bunx prettier --write \"**/*.{ts,js,json,md,html,css}\"",
|
|
52
47
|
"lint": "bunx eslint .",
|
|
53
48
|
"lint:fix": "bunx eslint . --fix",
|
|
54
|
-
"prepare": "bunx husky",
|
|
55
|
-
"test": "bun test --config vitest.config.ts",
|
|
56
|
-
"test:coverage": "bun test --coverage",
|
|
57
49
|
"typecheck": "bunx tsc --noEmit",
|
|
58
|
-
"
|
|
59
|
-
"docs:generate": "bunx typedoc",
|
|
50
|
+
"tree": "bun run scripts/tree.ts",
|
|
60
51
|
"fetch-spec": "bun run scripts/fetch-openapi-spec.ts",
|
|
52
|
+
"format": "bunx prettier --write \"**/*.{ts,js,json,md,html,css}\"",
|
|
53
|
+
"prepare": "bunx husky",
|
|
61
54
|
"inspector": "bunx mcp-inspector --config mcp.json --server git-mcp-server",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
55
|
+
"test": "bun test --config vitest.config.ts",
|
|
56
|
+
"test:coverage": "bun test --coverage",
|
|
57
|
+
"audit": "bun audit",
|
|
58
|
+
"audit:fix": "bun audit --fix",
|
|
59
|
+
"publish-mcp": "bun scripts/validate-mcp-publish-schema.ts"
|
|
64
60
|
},
|
|
65
61
|
"resolutions": {
|
|
66
62
|
"@hono/node-server": "1.19.5",
|