Steven Vukelich
Steven Vukelich
There have been PRs since the series of "Great Cancellation" pull requests where some types aren't being generated with using `CancellationToken`. This PR is an attempt at incremental fixes to...
## What does this PR do? Fixes the remote MCP server being called by VS Code. Fix OAuth Protected Resource Metadata flows with AZURE_MCP_DANGEROUSLY_ENABLE_FORWARDED_HEADERS. This configuration will read the X-Forwarded-Proto...
### Describe the bug Low-pri but could be great for the remote case: https://learn.microsoft.com/en-us/dotnet/core/extensions/httpclient-latency-extensions?tabs=dotnet-cli TL;DR: outbound HTTP requests can get stuck or slow in a few different ways. There's a...
### Describe the bug The HTTP 401 challenge for unauthenticated requests uses the incoming request protocol for crafting the `resource_metadata` value in the `WWWAuthenticate` as in https://github.com/microsoft/mcp/blob/493f8def1f37be543686ee9763be0774306d11c6/core/Azure.Mcp.Core/src/Areas/Server/Commands/ServiceStartCommand.cs#L412 The protocol for...
### Describe the bug CosmosService.Dispose is currently an `async void` which is an anti-pattern since the work cannot be awaited on by callers. [The async code is needed for its...