Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mcpm/clients/client_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ClientRegistry:
"cursor": CursorManager(),
"cline": ClineManager(),
"continue": ContinueManager(),
"goose": GooseClientManager(),
"goose-cli": GooseClientManager(),
"5ire": FiveireManager(),
"roo-code": RooCodeManager(),
}
Expand Down
6 changes: 3 additions & 3 deletions src/mcpm/clients/managers/goose.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class GooseClientManager(YAMLClientManager):
"""

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

def __init__(self, config_path=None):
"""Initialize the Goose client manager
"""Initialize the Goose CLI client manager

Args:
config_path: Optional path to the config file. If not provided, uses default path.
Expand Down