BotSharp/src/Infrastructure/BotSharp.Core.MCP/Settings/MCPSettings.cs

13 lines
325 B
C#
Raw Normal View History

using ModelContextProtocol.Client;
using ModelContextProtocol.Configuration;
2025-03-31 21:43:42 +00:00
namespace BotSharp.Core.MCP.Settings;
2025-04-01 01:59:19 +00:00
public class McpSettings
{
2025-04-01 15:24:48 +00:00
public bool Enabled { get; set; } = true;
public McpClientOptions McpClientOptions { get; set; }
2025-03-31 15:23:03 +00:00
public List<McpServerConfig> McpServerConfigs { get; set; } = new();
}