2025-11-13 16:07:34 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using ConsoleEchoMcpServer.Tools;
|
|
|
|
|
|
|
|
|
|
|
|
var builder = Host.CreateEmptyApplicationBuilder(settings: null);
|
|
|
|
|
|
builder.Services
|
|
|
|
|
|
.AddMcpServer()
|
|
|
|
|
|
.WithStdioServerTransport()
|
|
|
|
|
|
.WithTools<EchoTool>();
|
|
|
|
|
|
|
|
|
|
|
|
await builder.Build().RunAsync();
|
|
|
|
|
|
|
2025-11-13 09:48:15 +08:00
|
|
|
|
|