Skip to content

Commit ef96cd4

Browse files
committed
fix: rename git_mob_help tool to get_git_mob_help tool
1 parent 230569c commit ef96cd4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Built using [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/
3838

3939
### Tools
4040

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.
4242
- `setup_git_mob_globally`: Sets up git-mob globally for the user.
4343
- `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).
4444
- `add_team_member`: Adds a new team member using their key, name, and email.

src/tools/getGitMobCliHelp.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const mockGetHelp = getHelp as jest.Mock;
1111

1212
describe("[tools] getGitMobCliHelp", () => {
1313
it("should have correct name", () => {
14-
expect(tool.name).toBe("git_mob_cli_help");
14+
expect(tool.name).toBe("get_git_mob_cli_help");
1515
});
1616

1717
it("should have correct description", () => {

src/tools/getGitMobCliHelp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { ToolAnnotations } from "@modelcontextprotocol/sdk/types.js";
44
import type { ToolCallback } from "@modelcontextprotocol/sdk/server/mcp.js";
55
import type { GitMobTool } from "../types/index.js";
66

7-
const name = "git_mob_cli_help";
7+
const name = "get_git_mob_cli_help";
88

99
const description =
1010
"Displays general help and usage information for the Git Mob CLI. " +

0 commit comments

Comments
 (0)