15 lines
327 B
C#
15 lines
327 B
C#
using System.ComponentModel;
|
|
using ModelContextProtocol.Server;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Mcp;
|
|
|
|
[McpServerToolType]
|
|
public class OnlineSearchTool:ISingletonDependency
|
|
{
|
|
[McpServerTool, Description("进行在线搜索")]
|
|
public void OnlineSearch()
|
|
{
|
|
|
|
}
|
|
} |