Skip to content

Commit 6b17d94

Browse files
authored
fix: update goose cli client name (#77)
1 parent 5a80454 commit 6b17d94

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/mcpm/clients/client_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ClientRegistry:
3939
"cursor": CursorManager(),
4040
"cline": ClineManager(),
4141
"continue": ContinueManager(),
42-
"goose": GooseClientManager(),
42+
"goose-cli": GooseClientManager(),
4343
"5ire": FiveireManager(),
4444
"roo-code": RooCodeManager(),
4545
}

src/mcpm/clients/managers/goose.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ class GooseClientManager(YAMLClientManager):
2222
"""
2323

2424
# Client information
25-
client_key = "goose"
26-
display_name = "Goose"
25+
client_key = "goose-cli"
26+
display_name = "Goose CLI"
2727
download_url = "https://github.com/block/goose/releases/download/stable/download_cli.sh"
2828

2929
def __init__(self, config_path=None):
30-
"""Initialize the Goose client manager
30+
"""Initialize the Goose CLI client manager
3131
3232
Args:
3333
config_path: Optional path to the config file. If not provided, uses default path.

0 commit comments

Comments
 (0)