@cyanheads/git-mcp-server 2.6.5 β 2.7.1
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 +8 -7
- package/dist/index.js +55106 -47853
- package/package.json +47 -45
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-11-25/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
|
|
|
@@ -345,23 +345,24 @@ For strict rules when using this server with an AI agent, refer to the **`AGENTS
|
|
|
345
345
|
|
|
346
346
|
## π§ͺ Testing
|
|
347
347
|
|
|
348
|
-
|
|
348
|
+
Tests run via [Bun's test runner](https://bun.sh/docs/cli/test) with Vitest compatibility.
|
|
349
349
|
|
|
350
350
|
- **Run all tests:**
|
|
351
351
|
|
|
352
352
|
```sh
|
|
353
|
-
|
|
353
|
+
bun test
|
|
354
354
|
```
|
|
355
355
|
|
|
356
356
|
- **Run tests with coverage:**
|
|
357
357
|
|
|
358
358
|
```sh
|
|
359
|
-
|
|
359
|
+
bun test --coverage
|
|
360
360
|
```
|
|
361
361
|
|
|
362
|
-
- **Run
|
|
362
|
+
- **Run quality checks (lint, format, typecheck, audit):**
|
|
363
|
+
|
|
363
364
|
```sh
|
|
364
|
-
|
|
365
|
+
bun run devcheck
|
|
365
366
|
```
|
|
366
367
|
|
|
367
368
|
## πΊοΈ Roadmap
|
|
@@ -371,7 +372,7 @@ This server uses [Vitest](https://vitest.dev/) for testing.
|
|
|
371
372
|
The server uses a **provider-based architecture** to support multiple git implementation backends:
|
|
372
373
|
|
|
373
374
|
- **β
CLI Provider** (Current): Full-featured git operations via native git CLI
|
|
374
|
-
-
|
|
375
|
+
- Implementation coverage for all 27 git tools
|
|
375
376
|
- Executes git commands using Bun.spawn for optimal performance
|
|
376
377
|
- Streaming I/O handling for large outputs (10MB buffer limit)
|
|
377
378
|
- Configurable timeouts (60s default) and automatic process cleanup
|