BotSharp/src/Infrastructure/BotSharp.Abstraction/MCP/Services/IMcpService.cs
2025-04-15 11:28:37 -05:00

7 lines
143 B
C#

namespace BotSharp.Abstraction.MCP.Services;
public interface IMcpService
{
IEnumerable<McpServerOptionModel> GetServerConfigs() => [];
}