13 references to FromEndpoint
Aspire.Hosting.PostgreSQL (1)
PostgresBuilderExtensions.cs (1)
386.WithAnnotation(McpServerEndpointAnnotation.FromEndpoint(PostgresMcpContainerResource.PrimaryEndpointName, "/sse"))
Aspire.Hosting.Tests (12)
ApplicationModel\McpServerEndpointAnnotationTests.cs (12)
42Assert.Throws<ArgumentNullException>(() => McpServerEndpointAnnotation.FromEndpoint(null!)); 48Assert.Throws<ArgumentException>(() => McpServerEndpointAnnotation.FromEndpoint("")); 54Assert.Throws<ArgumentException>(() => McpServerEndpointAnnotation.FromEndpoint(" ")); 60var annotation = McpServerEndpointAnnotation.FromEndpoint("nonexistent"); 76var annotation = McpServerEndpointAnnotation.FromEndpoint("http"); 91var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "/sse"); 106var annotation = McpServerEndpointAnnotation.FromEndpoint("http", null); 122var annotation = McpServerEndpointAnnotation.FromEndpoint("http", ""); 138var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "custom/path"); 153var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "/mcp"); 168var annotation = McpServerEndpointAnnotation.FromEndpoint("http"); 185var annotation = McpServerEndpointAnnotation.FromEndpoint("https", "/mcp");