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/commands/target_operations/pop.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def pop(server_name):
# Check if client is supported
if client_manager is None:
console.print("[bold red]Error:[/] Unsupported active client")
console.print("Please switch to a supported client using 'mcpm client set <client-name>'")
console.print("Please switch to a supported client using 'mcpm target set @<client-name>'")
return

server_config = client_manager.from_client_format(server_name, server_data)
Expand Down
2 changes: 1 addition & 1 deletion src/mcpm/utils/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def print_error(message, details=None):
def print_client_error():
"""Print a standardized client-related error message."""
console.print("[bold red]Error:[/] Unsupported active client")
console.print("Please switch to a supported client using 'mcpm client set <client-name>'")
console.print("Please switch to a supported client using 'mcpm target set @<client-name>'")


def print_active_scope(scope: str):
Expand Down
Loading