TL;DR

Microsoft quietly shipped a meaningful upgrade to Azure AI Foundry’s Agent Service in early May 2026: first‑class agent memory, file and code interpreter tools, tighter Azure AI Search integration, and a new developer experience that unifies how agents are built, observed, and governed. If you’re shipping AI features on .NET and Azure, this isn’t a demo-only release — it’s a nudge toward production-ready, stateful agents. (learn.microsoft.com)


The update that matters (and why it’s not just another preview)

On May 8, 2026, Microsoft updated the What’s new in Microsoft Foundry documentation with a dense set of Agent Service capabilities. Buried in doc updates, this is effectively a platform shift: Foundry agents are moving from “stateless chat wrappers” to tool-using, memory-backed, observable services that can sit behind real applications. (learn.microsoft.com)

InfoWorld’s review published the same week lands on the same conclusion: Foundry is becoming the place where Microsoft wants you to actually run agents, not just prototype them. (infoworld.com)


What shipped (the parts engineers should care about)

1. Persistent agent memory (preview, but real)

Foundry agents can now store and retrieve memory via the Agent Service. This isn’t just chat history — it’s structured memory you control, scoped per agent or workflow.

Why this matters

  • Enables long‑running workflows (think support agents, migration bots).
  • Reduces prompt bloat → lower token costs and latency.
  • Pairs naturally with Azure AI Search or domain-specific data.

Design tip Treat memory like a cache, not a database. Persist only what the agent must recall later.


2. File search + code interpreter tools

Agents can now:

  • Search uploaded files
  • Run code in a sandboxed interpreter
  • Chain tool calls without custom orchestration glue

This closes a long-standing gap versus bespoke agent frameworks.

builder.AddAgent(agent =>
{
    agent.UseFileSearch();
    agent.UseCodeInterpreter();
});

Operational takeaway You no longer need to host separate microservices just to let an agent “do math” or parse a CSV. (learn.microsoft.com)


3. Native Azure AI Search grounding

Foundry agents can directly connect to an Azure AI Search index — no custom RAG plumbing required.

Implications

  • Faster time-to-prod for enterprise RAG scenarios
  • Fewer failure points
  • Governance via Azure-native RBAC and networking

This is Microsoft doubling down on Search as the default grounding layer. (learn.microsoft.com)


4. New agents developer experience (DX)

Microsoft is migrating everyone to a single agents DX across SDKs, CLI, and portal.

Microsoft Foundry’s Agent Service Just Leveled Up — Here’s What .NET and Azur...

What changes

  • Unified REST API
  • Better Azure Monitor integration
  • Agent Monitoring Dashboard out of the box

Translation: fewer homegrown dashboards, more time shipping features.


Cost, latency, and “should I use this in prod?”

Cost

  • Memory reduces token usage
  • Built‑in tools replace custom infra
  • Pricing still depends on underlying models (no surprise fees yet)

Latency

  • Tool calls add hops
  • Memory retrieval is faster than prompt stuffing
  • Expect slightly higher p95, lower p50

Production readiness Microsoft is careful with labels (“preview”), but:

  • Network isolation
  • Entra ID governance
  • Azure Monitor tracing

…all point to intentional production use, not experimentation. (learn.microsoft.com)


How a .NET team should adopt this (pragmatically)

  1. Start with one agent, not a platform rewrite
    Replace an existing chat or workflow component.

  2. Use Microsoft.Extensions.AI + Foundry Let Foundry handle orchestration; keep .NET focused on business logic.

  3. Turn on monitoring immediately Agent failures are harder to debug than HTTP 500s.

  4. Resist “agent sprawl” One good agent with tools beats five loosely defined ones.


The bigger signal

This update isn’t flashy. That’s the point.

Microsoft is treating agents as infrastructure, not demos. Foundry is becoming the Azure App Service of agentic AI — opinionated, boring, and deployable.

If you’ve been waiting for a sign that it’s time to move past DIY agent stacks on .NET and Azure… this was it.


Further reading

  • https://learn.microsoft.com/en-us/azure/foundry/whats-new-foundry
  • https://www.infoworld.com/article/4165766/building-ai-apps-and-agents-with-microsoft-foundry.html
  • https://azure.microsoft.com/en-us/blog/azure-ai-foundry-your-ai-app-and-agent-factory/