MCPcopy Create free account
hub / github.com/IBM/mcp-cli / __init__

Method __init__

tests/adapters/test_chat_adapter.py:101–108  ·  view source on GitHub ↗
(self, test_name: str = "tools")

Source from the content-addressed store, hash-verified

99 """Concrete CommandGroup for testing subcommand dispatch."""
100
101 def __init__(self, test_name: str = "tools"):
102 super().__init__()
103 self._name = test_name
104 self._description = f"Mock command group: {test_name}"
105 self._modes = CommandMode.CHAT
106 self._aliases: list[str] = []
107 self._requires_context = False
108 self._parameters: list[CommandParameter] = []
109
110 @property
111 def name(self) -> str:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected