using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace McpStudy.Core { [McpServerToolType] public class EchoTools { [McpServerTool, Description("Echoes the input back to the client.")] public static string Echo(string message) { return "hello " + message; } } }