9 lines
244 B
C#
9 lines
244 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
builder.Services.AddMcpServer()
|
|
.WithToolsFromAssembly();
|
|
var app = builder.Build();
|
|
|
|
app.MapGet("/", () => "This is a test server with only stub functionality!");
|
|
app.MapMcp();
|
|
|
|
app.Run(); |