@@ -123,13 +123,13 @@ def main(ctx, help_flag):
123
123
commands_table .add_row (" [cyan]config[/]" , "Manage MCPM configuration." )
124
124
commands_table .add_row (" [cyan]inspector[/]" , "Launch the MCPM Inspector UI to examine servers." )
125
125
commands_table .add_row (" [cyan]list/ls[/]" , "List all installed MCP servers." )
126
- commands_table .add_row (" [cyan]remove[/]" , "Remove an installed MCP server." )
126
+ commands_table .add_row (" [cyan]remove/rm [/]" , "Remove an installed MCP server." )
127
127
commands_table .add_row (" [cyan]search[/]" , "Search available MCP servers." )
128
128
commands_table .add_row (" [cyan]stash[/]" , "Temporarily store a server configuration aside." )
129
129
commands_table .add_row (" [cyan]pop[/]" , "Restore a previously stashed server configuration." )
130
130
commands_table .add_row (" [cyan]profile[/]" , "Manage MCPM profiles." )
131
- commands_table .add_row (" [cyan]mv[/]" , "Move a server from one client/profile to another." )
132
- commands_table .add_row (" [cyan]cp[/]" , "Copy a server from one client/profile to another." )
131
+ commands_table .add_row (" [cyan]move/ mv[/]" , "Move a server from one client/profile to another." )
132
+ commands_table .add_row (" [cyan]copy/ cp[/]" , "Copy a server from one client/profile to another." )
133
133
commands_table .add_row (" [cyan]activate[/]" , "Activate a profile." )
134
134
commands_table .add_row (" [cyan]deactivate[/]" , "Deactivate a profile." )
135
135
console .print (commands_table )
@@ -142,6 +142,7 @@ def main(ctx, help_flag):
142
142
# Register commands
143
143
main .add_command (search .search )
144
144
main .add_command (remove .remove )
145
+ main .add_command (remove .remove , name = "rm" )
145
146
main .add_command (add .add )
146
147
main .add_command (list .list )
147
148
main .add_command (list .list , name = "ls" )
@@ -153,7 +154,9 @@ def main(ctx, help_flag):
153
154
main .add_command (config .config )
154
155
main .add_command (inspector .inspector , name = "inspector" )
155
156
main .add_command (profile .profile , name = "profile" )
157
+ main .add_command (transfer .move )
156
158
main .add_command (transfer .move , name = "mv" )
159
+ main .add_command (transfer .copy )
157
160
main .add_command (transfer .copy , name = "cp" )
158
161
main .add_command (profile .activate )
159
162
main .add_command (profile .deactivate )
0 commit comments