specify whether to create mcp config and filename

This commit is contained in:
Joe Danziger
2025-05-21 12:43:05 -04:00
parent 9eacd6e061
commit c12cff1890
6 changed files with 35 additions and 15 deletions

View File

@@ -4,6 +4,8 @@ import path from 'path';
const brandName = 'Windsurf';
const brandDir = '.windsurf';
const rulesDir = '.windsurf/rules';
const mcpConfig = true;
const mcpConfigName = 'mcp.json';
// File name mapping (specific files with naming changes)
const fileMap = {
@@ -133,5 +135,7 @@ export {
brandName,
brandDir,
rulesDir,
getTargetRuleFilename
getTargetRuleFilename,
mcpConfig,
mcpConfigName
};