Default to Cursor profile for MCP init when no rules specified (#846)

This commit is contained in:
Joe Danziger
2025-06-22 15:24:09 -04:00
committed by GitHub
parent 403d7b00ca
commit 59a4ec9e1a
3 changed files with 12 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ export function registerInitializeProjectTool(server) {
.array(z.enum(RULE_PROFILES))
.optional()
.describe(
`List of rule profiles to include at initialization. If omitted, defaults to all available profiles. Available options: ${RULE_PROFILES.join(', ')}`
`List of rule profiles to include at initialization. If omitted, defaults to Cursor profile only. Available options: ${RULE_PROFILES.join(', ')}`
)
}),
execute: withNormalizedProjectRoot(async (args, context) => {