diff --git a/src/Infrastructure/BotSharp.Abstraction/Agents/Models/MCPTool.cs b/src/Infrastructure/BotSharp.Abstraction/Agents/Models/MCPTool.cs index 88e2d4b0..ee8e52d4 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Agents/Models/MCPTool.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Agents/Models/MCPTool.cs @@ -2,9 +2,16 @@ namespace BotSharp.Abstraction.Agents.Models; public class McpTool { + [JsonPropertyName("name")] public string Name { get; set; } + + [JsonPropertyName("server_id")] public string ServerId { get; set; } + + [JsonPropertyName("disabled")] public bool Disabled { get; set; } + + [JsonPropertyName("functions")] public IEnumerable Functions { get; set; } = []; public McpTool()