BotSharp/tests/BotSharp.PizzaBot.MCPServer/Program.cs

9 lines
244 B
C#
Raw Permalink Normal View History

2025-03-19 03:07:31 +00:00
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddMcpServer()
.WithToolsFromAssembly();
2025-03-19 03:07:31 +00:00
var app = builder.Build();
app.MapGet("/", () => "This is a test server with only stub functionality!");
app.MapMcp();
2025-03-19 03:07:31 +00:00
app.Run();