Skip to content

Commit 3c046ce

Browse files
committed
move import to client import
1 parent b1768b9 commit 3c046ce

File tree

4 files changed

+407
-268
lines changed

4 files changed

+407
-268
lines changed

src/mcpm/cli.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
client,
1414
config,
1515
doctor,
16-
import_client,
1716
info,
1817
inspect,
1918
inspector,
@@ -162,7 +161,6 @@ def main(ctx, help_flag, version):
162161
commands_table.add_row(" [cyan]uninstall[/]", "Remove a server from configuration.")
163162
commands_table.add_row(" [cyan]ls[/]", "List all installed servers and profile assignments.")
164163
commands_table.add_row(" [cyan]inspect[/]", "Launch MCP Inspector to test/debug a server.")
165-
commands_table.add_row(" [cyan]import[/]", "Import server configurations from supported clients.")
166164

167165
commands_table.add_row("[yellow]Server Execution[/]")
168166
commands_table.add_row(" [cyan]run[/]", "Execute a single server over stdio.")
@@ -179,7 +177,7 @@ def main(ctx, help_flag, version):
179177
commands_table.add_row(" [cyan]config[/]", "Manage MCPM configuration and settings.")
180178

181179
commands_table.add_row("[yellow]Client Management[/]")
182-
commands_table.add_row(" [cyan]client[/]", "Manage MCP client configurations and server integrations.")
180+
commands_table.add_row(" [cyan]client[/]", "Manage MCP client configurations and import server configs.")
183181

184182
commands_table.add_row("[yellow]Legacy Aliases[/]")
185183
commands_table.add_row(" [cyan]add[/]", "Alias for 'install'.")
@@ -200,7 +198,6 @@ def main(ctx, help_flag, version):
200198
main.add_command(run.run)
201199
main.add_command(inspect.inspect)
202200
main.add_command(profile.profile, name="profile")
203-
main.add_command(import_client.import_client, name="import")
204201
main.add_command(doctor.doctor)
205202
main.add_command(usage.usage)
206203
main.add_command(config.config)

src/mcpm/commands/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"client",
88
"config",
99
"doctor",
10-
"import_client",
1110
"info",
1211
"inspect",
1312
"inspector",
@@ -26,7 +25,6 @@
2625
client,
2726
config,
2827
doctor,
29-
import_client,
3028
info,
3129
inspect,
3230
inspector,

0 commit comments

Comments
 (0)