@andrebuzeli/git-mcp 11.0.1 → 11.0.2

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/package.json +1 -1
  2. package/src/server.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrebuzeli/git-mcp",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "git-mcp": "bin/git-mcp.js"
package/src/server.js CHANGED
@@ -64,6 +64,7 @@ async function listSchemas() {
64
64
  export async function startServer() {
65
65
  process.stdin.setEncoding('utf-8')
66
66
  let buf = ''
67
+ writeJsonRpc(0, { serverInfo: { name: '@andrebuzeli/git-mcp', version: '11.0.1' }, capabilities: { tools: true } })
67
68
  process.stdin.on('data', async chunk => {
68
69
  buf += chunk
69
70
  try {