/
CyberSys
/
unity-mcp-bridge
Обзор
Документация
Войти
/
CyberSys
/
unity-mcp-bridge
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
MCPForUnity/Editor/Models/MCPConfigServer.cs
19 строк
452 B
Marcus Sanatan
Rename plugin folder to MCPForUnity (#303)
04 окт 2025, 03:23
Не верифицирован
04 окт 2025, 03:23
e9b1ae4
Код
Авторство
О чём код?
using System; using Newtonsoft.Json; namespace MCPForUnity.Editor.Models { [Serializable] public class McpConfigServer { [JsonProperty("command")] public string command; [JsonProperty("args")] public string[] args; // VSCode expects a transport type; include only when explicitly set [JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)] public string type; } }