git-mob-mcp-server 1.0.11 → 1.0.12

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 CHANGED
@@ -38,7 +38,7 @@ Built using [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/
38
38
 
39
39
  ### Tools
40
40
 
41
- - `git_mob_cli_help`: Displays general help and usage information for the Git Mob CLI.
41
+ - `get_git_mob_cli_help`: Displays general help and usage information for the Git Mob CLI.
42
42
  - `setup_git_mob_globally`: Sets up git-mob globally for the user.
43
43
  - `setup_git_mob_locally`: Sets up git-mob locally for the current repository when it overrides `core.hooksPath` git configuration variable (e.g when using husky).
44
44
  - `add_team_member`: Adds a new team member using their key, name, and email.
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  import { getHelp } from "../clients/gitMobClient.js";
3
- const name = "git_mob_cli_help";
3
+ const name = "get_git_mob_cli_help";
4
4
  const description = "Displays general help and usage information for the Git Mob CLI. " +
5
5
  "You can optionally provide a command ('setup', 'coauthor', or 'help') " +
6
6
  "to get detailed help for that specific command.";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-mob-mcp-server",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "MCP Server for git-mob CLI app",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",