@@ -202,7 +202,7 @@ const configureMcpForWindsurf = async (config: Record<string, unknown>, _project
202
202
203
203
// Generic MCP configuration display
204
204
const showGenericMcpConfig = ( config : Record < string , unknown > , ideName : string ) : void => {
205
- log ( `\n${ chalk . yellow ( '📋 Manual Configuration Required ' ) } ` )
205
+ log ( `\n${ chalk . yellow ( '📋 Manual configuration required ' ) } ` )
206
206
log ( `Please add the following configuration to your ${ ideName } settings:` )
207
207
log ( `\n${ chalk . gray ( '--- Configuration ---' ) } ` )
208
208
log ( JSON . stringify ( config , null , 2 ) )
@@ -217,7 +217,7 @@ const triggerMcpConfiguration = async (ide: ConsumerConfig, projectPath: string)
217
217
{
218
218
type : 'confirm' ,
219
219
name : 'shouldConfigure' ,
220
- message : `Would you like to automatically configure MCP server for ${ ide . presentedName } ?` ,
220
+ message : `Would you like to automatically configure the MCP server for ${ ide . presentedName } ?` ,
221
221
default : true ,
222
222
} ,
223
223
] )
@@ -285,7 +285,7 @@ const fetchProjectInfo = async (url: string): Promise<ProjectInfo> => {
285
285
286
286
const getRepoUrlFromProjectId = async ( api : NetlifyAPI , projectId : string ) : Promise < string > => {
287
287
try {
288
- const SiteInfo = ( await api . getSite ( { siteId : projectId } ) ) as SiteInfo
288
+ const siteInfo = ( await api . getSite ( { siteId : projectId } ) ) as SiteInfo
289
289
const repoUrl = SiteInfo . build_settings ?. repo_url
290
290
291
291
if ( ! repoUrl ) {
@@ -334,7 +334,7 @@ export const initWithAiRules = async (hash: string, command: BaseCommand): Promi
334
334
335
335
try {
336
336
// Step 1: Decode hash and fetch project information
337
- log ( '\n📋 Decoding project hash ...' )
337
+ log ( '\n📋 Extracting project details ...' )
338
338
const decodedUrl = decodeHash ( hash )
339
339
log ( `${ chalk . cyan ( 'Decoded URL:' ) } ${ decodedUrl } ` )
340
340
@@ -344,7 +344,7 @@ export const initWithAiRules = async (hash: string, command: BaseCommand): Promi
344
344
log ( `${ chalk . cyan ( 'Project ID:' ) } ${ projectInfo . projectId } ` )
345
345
346
346
// Step 2: Get repository URL from project ID via Netlify site API
347
- log ( '\n🔗 Linking to Netlify site and fetching repository...' )
347
+ log ( '\n🔗 Linking to Netlify project and fetching repository...' )
348
348
const repositoryUrl = await getRepoUrlFromProjectId ( api , projectInfo . projectId )
349
349
log ( `${ chalk . cyan ( 'Repository:' ) } ${ repositoryUrl } ` )
350
350
0 commit comments