@cyanheads/git-mcp-server 2.0.9 → 2.0.10

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 (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![TypeScript](https://img.shields.io/badge/TypeScript-^5.8.3-blue.svg)](https://www.typescriptlang.org/)
4
4
  [![Model Context Protocol](https://img.shields.io/badge/MCP%20SDK-^1.11.0-green.svg)](https://modelcontextprotocol.io/)
5
- [![Version](https://img.shields.io/badge/Version-2.0.9-blue.svg)](./CHANGELOG.md)
5
+ [![Version](https://img.shields.io/badge/Version-2.0.10-blue.svg)](./CHANGELOG.md)
6
6
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
7
7
  [![Status](https://img.shields.io/badge/Status-Stable-green.svg)](https://github.com/cyanheads/git-mcp-server/issues)
8
8
  [![GitHub](https://img.shields.io/github/stars/cyanheads/git-mcp-server?style=social)](https://github.com/cyanheads/git-mcp-server)
@@ -204,6 +204,9 @@ npm run build
204
204
  # Test the server locally using the MCP inspector tool (stdio transport)
205
205
  npm run inspector
206
206
 
207
+ # Test the server locally using the MCP inspector tool (http transport)
208
+ npm run inspector:http
209
+
207
210
  # Clean build artifacts (runs scripts/clean.ts)
208
211
  npm run clean
209
212
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/git-mcp-server",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "An MCP (Model Context Protocol) server providing tools to interact with Git repositories. Enables LLMs and AI agents to perform Git operations like clone, commit, push, pull, branch, diff, log, status, and more via the MCP standard.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -29,13 +29,15 @@
29
29
  "start:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http node dist/index.js",
30
30
  "rebuild": "ts-node --esm scripts/clean.ts && npm run build",
31
31
  "tree": "ts-node --esm scripts/tree.ts",
32
- "inspector": "npx @modelcontextprotocol/inspector dist/index.js",
32
+ "inspector": "npx @modelcontextprotocol/inspector --config mcp.json --server git-mcp-server",
33
+ "inspector:http": "npx @modelcontextprotocol/inspector --config mcp.json --server git-mcp-server-http",
33
34
  "clean": "ts-node --esm scripts/clean.ts"
34
35
  },
35
36
  "publishConfig": {
36
37
  "access": "public"
37
38
  },
38
39
  "dependencies": {
40
+ "@modelcontextprotocol/inspector": "^0.11.0",
39
41
  "@modelcontextprotocol/sdk": "^1.11.0",
40
42
  "@types/jsonwebtoken": "^9.0.9",
41
43
  "@types/node": "^22.15.15",