You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Command that runs an MCP server for the sourceloop CLI, this is not supposed to be run directly, but rather used by the MCP client to interact with the CLI commands.';
39
+
staticreadonlydescription=`
40
+
Command that runs an MCP server for the sourceloop CLI, this is not supposed to be run directly, but rather used by the MCP client to interact with the CLI commands.
41
+
You can use it using the following MCP server configuration:
42
+
"sourceloop": {
43
+
"command": "npx",
44
+
"args": ["@sourceloop/cli", "mcp"],
45
+
"timeout": 300
46
+
}
47
+
`;
41
48
42
49
staticreadonlyflags={
43
50
help: flags.boolean({
@@ -152,17 +159,20 @@ export class Mcp extends Base<{}> {
152
159
switch(true){
153
160
caseflag.type==='boolean':
154
161
option=z.boolean().optional();
162
+
description+=` (ask user for this value if not provided)`;
0 commit comments