e9b1ae44c5
* Copy UnityMcpBridge into a new MCPForUnity folder This is to close #284 * refactor: rename UnityMcpBridge directory to MCPForUnity in docs * chore: rename UnityMcpBridge directory to MCPForUnity across workflow files * chore: rename UnityMcpBridge directory to MCPForUnity across all files * refactor: update import paths from UnityMcpBridge to MCPForUnity across test files * fix: update module import paths to use MCPForUnity instead of UnityMcpBridge * chore: update unity-mcp package path to MCPForUnity directory * feat: add OneTimeSetUp to initialize CommandRegistry before tests run Hopefully fix the CI failures * Apply recent fix to new folder * Temporarily trigger tests to see if CI works * Revert "Temporarily trigger tests to see if CI works" It works! This reverts commit 8c6eaaad07545cef047769f2c52fe506545a8161.
13 lines
217 B
C#
13 lines
217 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MCPForUnity.Editor.Models
|
|
{
|
|
[Serializable]
|
|
public class McpConfig
|
|
{
|
|
[JsonProperty("mcpServers")]
|
|
public McpConfigServers mcpServers;
|
|
}
|
|
}
|