Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# AI-related files
.cursorrules
.cursorignore
.windsurf
.codeiumignore
CLAUDE.md

# Code-copy related files
Expand Down
18 changes: 18 additions & 0 deletions UnityMcpBridge/Editor/Data/McpClients.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,24 @@ public class McpClients
mcpType = McpTypes.VSCode,
configStatus = "Not Configured",
},
new()
{
name = "Windsurf",
windowsConfigPath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
".codeium",
"windsurf",
"mcp_config.json"
),
linuxConfigPath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
".codeium",
"windsurf",
"mcp_config.json"
),
mcpType = McpTypes.Windsurf,
configStatus = "Not Configured",
},
};

// Initialize status enums after construction
Expand Down
3 changes: 2 additions & 1 deletion UnityMcpBridge/Editor/Models/McpTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ namespace UnityMcpBridge.Editor.Models
{
public enum McpTypes
{
ClaudeCode,
ClaudeDesktop,
Cursor,
VSCode,
ClaudeCode,
Windsurf,
}
}

7 changes: 7 additions & 0 deletions UnityMcpBridge/Editor/Windows/ManualConfigEditorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ protected virtual void OnGUI()
instructionStyle
);
}
else if (mcpClient?.mcpType == McpTypes.Windsurf)
{
EditorGUILayout.LabelField(
" a) Going to File > Preferences > Windsurf Settings > MCP > Manage MCPs -> View raw config",
instructionStyle
);
}
EditorGUILayout.LabelField(" OR", instructionStyle);
EditorGUILayout.LabelField(
" b) Opening the configuration file at:",
Expand Down