@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.
Files changed (3) hide show
  1. package/README.md +8 -7
  2. package/dist/index.js +55106 -47853
  3. package/package.json +47 -45
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![Version](https://img.shields.io/badge/Version-2.6.5-blue.svg?style=flat-square)](./CHANGELOG.md) [![MCP Spec](https://img.shields.io/badge/MCP%20Spec-2025--11--25-8A2BE2.svg?style=flat-square)](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-11-25/changelog.mdx) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.24.3-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Status](https://img.shields.io/badge/Status-Stable-brightgreen.svg?style=flat-square)](https://github.com/cyanheads/git-mcp-server/issues) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.2.21-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-2.7.1-blue.svg?style=flat-square)](./CHANGELOG.md) [![MCP Spec](https://img.shields.io/badge/MCP%20Spec-2025--11--25-8A2BE2.svg?style=flat-square)](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-11-25/changelog.mdx) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.26.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Status](https://img.shields.io/badge/Status-Stable-brightgreen.svg?style=flat-square)](https://github.com/cyanheads/git-mcp-server/issues) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.2.21-blueviolet.svg?style=flat-square)](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
- This server uses [Vitest](https://vitest.dev/) for testing.
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
- npm test
353
+ bun test
354
354
  ```
355
355
 
356
356
  - **Run tests with coverage:**
357
357
 
358
358
  ```sh
359
- npm run test:coverage
359
+ bun test --coverage
360
360
  ```
361
361
 
362
- - **Run tests in watch mode:**
362
+ - **Run quality checks (lint, format, typecheck, audit):**
363
+
363
364
  ```sh
364
- npm test -- --watch
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
- - Complete coverage of all 27 git tools
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