Thulani Chivandikwa

Results 7 comments of Thulani Chivandikwa

Thanks fore the response @weirdpattern I appreciate you looking into it

I had the same process and problems as explained by madeinquant. The following fixed my problem: ``` Environment.SetEnvironmentVariable("R_HOME", "C:\\Program Files\\R\\R-3.2.4revised"); using (RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\R-core\R")) { var envPath = Environment.GetEnvironmentVariable("PATH");...

This would be great as well to be able to do with the docker scans

A counter approach may be to delagate this to the mcp server. Given each does something different this may be challenging for the client to do. Lookup some mcp cli...

At the least can you offer intervention on first execution in a given chat per mcp tool with the option to accept all future calls and opt into notifications per...

Ok, so finally found a working answer ```csharp services .AddHealthChecksUI(opt => { opt.AddHealthCheckEndpoint("API", "/api/health"); }) .AddInMemoryStorage(); services .AddHealthChecks() .AddApplicationStatus(name: "Application Status") ... app.UseHealthChecks("/api/health", new HealthCheckOptions { Predicate = _ =>...