Skip to content

Commit 124261a

Browse files
committed
扩展CodeBuddy MCP
1 parent edd7817 commit 124261a

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

MCPForUnity/Editor/Data/McpClients.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,31 @@ public class McpClients
208208
mcpType = McpTypes.Codex,
209209
configStatus = "Not Configured",
210210
},
211+
// CodeBuddy
212+
new()
213+
{
214+
name = "CodeBuddy",
215+
windowsConfigPath = Path.Combine(
216+
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
217+
".CodeBuddy",
218+
"settings",
219+
"mcp.json"
220+
),
221+
macConfigPath = Path.Combine(
222+
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
223+
".CodeBuddy",
224+
"settings",
225+
"mcp.json"
226+
),
227+
linuxConfigPath = Path.Combine(
228+
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
229+
".CodeBuddy",
230+
"settings",
231+
"mcp.json"
232+
),
233+
mcpType = McpTypes.CodeBuddy,
234+
configStatus = "Not Configured",
235+
},
211236
};
212237

213238
// Initialize status enums after construction

MCPForUnity/Editor/Models/McpTypes.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ public enum McpTypes
1010
VSCode,
1111
Windsurf,
1212
Trae,
13+
CodeBuddy,
1314
}
1415
}

0 commit comments

Comments
 (0)