A fully managed platform in Microsoft Foundry for hosting, scaling, and securing AI agents built with any supported framework or model
There are two related capabilities here that are easy to conflate.
Microsoft's Azure DevOps Remote MCP documentation currently marks "wit_query_by_wiql" as an MCP Insiders capability and explicitly requires:
"X-MCP-Insiders: true"
At the same time, Microsoft Foundry's general remote MCP implementation does support custom headers. The important limitation is where those headers can be supplied.
For the documented Foundry MCP tool flow, custom headers can be provided at runtime rather than being permanently stored on the MCP tool. Microsoft specifically documents supplying them through the MCP tool resources for the run, and notes that the headers are available only for that run.
That means I would distinguish between:
- a directly controlled remote MCP connection, where the client/runtime can attach "X-MCP-Insiders: true"; and
- the managed Prompt Agent → Toolbox → Azure DevOps Remote MCP configuration, where the portal does not currently expose an arbitrary-header field for that built-in connection.
So if you are specifically using the managed Prompt Agent + Toolbox Azure DevOps MCP integration and cannot find a header setting, I would not assume that the generic MCP custom-header capability automatically means that this managed connector exposes it.
Microsoft's newer Foundry documentation also supports runtime configuration of MCP properties through structured inputs, including routing headers. That may be worth testing if your Prompt Agent architecture allows you to define the MCP tool rather than relying entirely on the preconfigured Azure DevOps Toolbox integration.
The key question is therefore whether "X-MCP-Insiders" is exposed through that specific managed Azure DevOps MCP tool configuration. I do not see Microsoft documentation currently showing a supported portal setting for adding that header to the managed Toolbox integration.
If you need "System.BoardLane" immediately, the supported fallback is Azure DevOps WIQL itself. Azure DevOps exposes a REST API for executing arbitrary WIQL:
"POST https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/wiql?api-version=7.1"
That would allow the query you described without depending on the MCP Insiders-only "wit_query_by_wiql" tool.
So my current interpretation is:
- "wit_query_by_wiql" through Azure DevOps Remote MCP: currently requires "X-MCP-Insiders: true".
- Generic Foundry remote MCP: supports custom headers.
- Managed Prompt Agent + Toolbox Azure DevOps MCP: I cannot find documentation confirming that arbitrary custom headers such as "X-MCP-Insiders" can currently be injected through that managed configuration.
- Directly controlled MCP clients/agents: can supply the required header where their MCP connection configuration exposes headers.
- If the managed Prompt Agent path cannot expose the header, direct Azure DevOps WIQL remains the practical supported route for Board Lane queries until the MCP tool becomes generally available or the managed integration exposes the header.
I would be interested in Microsoft confirming whether the Toolbox-managed Azure DevOps MCP connection intentionally strips or simply does not expose arbitrary headers, because that determines whether this is a configuration limitation or a current product gap.
Microsoft Learn references:
Azure DevOps Remote MCP Server:
Microsoft Foundry MCP tools:
Azure DevOps WIQL REST API: