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
3 changes: 3 additions & 0 deletions src/mcp_cli/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def register_all_commands() -> None:
from mcp_cli.commands.apps import AppsCommand
from mcp_cli.commands.memory import MemoryCommand
from mcp_cli.commands.plan import PlanCommand
from mcp_cli.commands.cmd import CmdCommand
from mcp_cli.commands.attach import AttachCommand

# Register basic commands
Expand Down Expand Up @@ -161,6 +162,8 @@ def register_all_commands() -> None:
# Register plan command
registry.register(PlanCommand())

# Register cmd command (CLI-only)
registry.register(CmdCommand())
# Register attach command (multi-modal file staging)
registry.register(AttachCommand())

Expand Down
5 changes: 5 additions & 0 deletions src/mcp_cli/commands/cmd/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Command mode command."""

from mcp_cli.commands.cmd.cmd import CmdCommand

__all__ = ["CmdCommand"]
Loading