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