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.
127
+
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.
131
128
132
129
```
133
130
USAGE
134
131
$ sl mcp
135
132
136
133
OPTIONS
137
134
--help show manual pages
135
+
136
+
DESCRIPTION
137
+
Command that runs an MCP server for the sourceloop CLI, this is not supposed to be run directly, but rather used by
138
+
the MCP client to interact with the CLI commands.
139
+
You can use it using the following MCP server configuration:
'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
+
\`\`\`json
43
+
"sourceloop": {
44
+
"command": "npx",
45
+
"args": ["@sourceloop/cli", "mcp"],
46
+
"timeout": 300
47
+
}
48
+
\`\`\`
49
+
`;
41
50
42
51
staticreadonlyflags={
43
52
help: flags.boolean({
@@ -152,17 +161,20 @@ export class Mcp extends Base<{}> {
152
161
switch(true){
153
162
caseflag.type==='boolean':
154
163
option=z.boolean().optional();
164
+
description+=` (ask user for this value if not provided)`;
0 commit comments