We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 530e01c commit a3cb654Copy full SHA for a3cb654
src/Infrastructure/BotSharp.Abstraction/Agents/Models/MCPTool.cs
@@ -2,9 +2,16 @@ namespace BotSharp.Abstraction.Agents.Models;
2
3
public class McpTool
4
{
5
+ [JsonPropertyName("name")]
6
public string Name { get; set; }
7
+
8
+ [JsonPropertyName("server_id")]
9
public string ServerId { get; set; }
10
11
+ [JsonPropertyName("disabled")]
12
public bool Disabled { get; set; }
13
14
+ [JsonPropertyName("functions")]
15
public IEnumerable<McpFunction> Functions { get; set; } = [];
16
17
public McpTool()
0 commit comments