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
Copy file name to clipboardExpand all lines: packages/cli/src/commands/cdk.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ export class Cdk extends Base<CdkOptions> {
18
18
Use this command to add arc-cdk to your project.
19
19
The arc-cdk is a library that provides a set of tools and utilities to help you build and deploy your applications on AWS using the AWS Cloud Development Kit (CDK).
20
20
It provides a set of constructs that can be used to build and deploy your applications on AWS using the AWS CDK.
21
+
Refer existing service if any for discovering the parameters not provided by the user, or ask the user directly
'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