We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f836822 + 446a873 commit 18bb6ffCopy full SHA for 18bb6ff
src/Bicep.McpServer/IServiceCollectionExtensions.cs
@@ -40,6 +40,9 @@ public static IMcpServerBuilder AddBicepMcpServer(this IServiceCollection servic
40
.AddSingleton<ResourceVisitor>()
41
.AddBicepCore();
42
43
+ services
44
+ .AddSingleton<BicepTools>();
45
+
46
services.AddAzureClients(clientBuilder =>
47
{
48
clientBuilder.AddArmClient("00000000-0000-0000-0000-000000000000");
@@ -54,7 +57,6 @@ public static IMcpServerBuilder AddBicepMcpServer(this IServiceCollection servic
54
57
})
55
58
.WithTools<BicepTools>();
56
59
}
-
60
61
public static IServiceCollection AddBicepCore(this IServiceCollection services) => services
62
.AddSingleton<INamespaceProvider, NamespaceProvider>()
0 commit comments