Initial MCP server commit

This commit is contained in:
2026-04-12 22:15:46 +03:00
commit 362fde4d1b
86 changed files with 83311 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace LazyBear.MCP.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}