File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {
13
13
configureMcpForVSCode ,
14
14
configureMcpForCursor ,
15
15
configureMcpForWindsurf ,
16
- showGenericMcpConfig
16
+ showGenericMcpConfig ,
17
17
} from '../../utils/mcp-utils.js'
18
18
import type BaseCommand from '../base-command.js'
19
19
import type { SiteInfo } from '../../utils/types.js'
@@ -42,9 +42,13 @@ const triggerMcpConfiguration = async (ide: ConsumerConfig, projectPath: string)
42
42
] )
43
43
44
44
if ( ! shouldConfigure ) {
45
+ log ( ` ${ chalk . gray ( 'You can configure MCP manually later for enhanced AI capabilities:' ) } ` )
45
46
log (
46
- chalk . gray ( 'Skipped MCP configuration. You can set it up manually later by changing MCP settings in your editor' ) ,
47
+ ` ${ chalk . gray ( 'Documentation:' ) } ${ chalk . cyan (
48
+ 'https://docs.netlify.com/welcome/build-with-ai/netlify-mcp-server/' ,
49
+ ) } `,
47
50
)
51
+
48
52
return false
49
53
}
50
54
@@ -227,8 +231,11 @@ export const initWithAiRules = async (hash: string, command: BaseCommand): Promi
227
231
log ( chalk . yellowBright ( `🔧 Step 2: Manual MCP Configuration` ) )
228
232
log ( ` ${ chalk . cyan ( detectedIDE . key ) } detected - MCP setup was skipped` )
229
233
log ( ` ${ chalk . gray ( 'You can configure MCP manually later for enhanced AI capabilities:' ) } ` )
230
- log ( ` ${ chalk . gray ( 'Documentation:' ) } ${ chalk . cyan ( 'https://docs.netlify.com/welcome/build-with-ai/netlify-mcp-server/' ) } ` )
231
-
234
+ log (
235
+ ` ${ chalk . gray ( 'Documentation:' ) } ${ chalk . cyan (
236
+ 'https://docs.netlify.com/welcome/build-with-ai/netlify-mcp-server/' ,
237
+ ) } `,
238
+ )
232
239
}
233
240
log ( )
234
241
}
You can’t perform that action at this time.
0 commit comments