LinkToolAddin/host/mcp/McpToolRequest.cs

10 lines
251 B
C#

using System.Collections.Generic;
namespace LinkToolAddin.host.mcp;
public class McpToolRequest
{
public McpServer McpServer { get; set; }
public string ToolName { get; set; }
public Dictionary<string, object> ToolArgs { get; set; }
}