21 lines
476 B
C#
Raw Normal View History

2025-10-11 18:25:59 +08:00
using ModelContextProtocol.Server;
using System.ComponentModel;
namespace XiaoZhiSharp_MauiBlazorApp.McpTools
{
[McpServerToolType]
public sealed class IotThings_Tool
{
[McpServerTool, Description("开灯")]
public static string Light_ON()
{
return "开灯成功";
}
[McpServerTool, Description("关灯")]
public static string Light_OFF()
{
return "关灯成功";
}
}
}