Hello Dinakar,
Welcome to Microsoft Q&A and Thank you for reaching out.
The change from Connected Agents to A2A in the new Azure AI Foundry is a conceptual shift, not just a feature rename. Here’s how it all fits together.
Is A2A the replacement for Connected Agents?
Yes, functionally and directionally, A2A replaces Connected Agents, but it’s more than a like-for-like replacement.
- Connected Agents (in the earlier Foundry experience) were a platform-specific, point-to-point feature that allowed one agent to directly invoke another inside Foundry.
A2A (Agent-to-Agent) is a standardized protocol for agent communication. It enables agents to:
Discover each other’s capabilities
Communicate in a structured way
Collaborate across services, runtimes, and even platforms
So while Connected Agents have been removed from the new Foundry UI, A2A is the strategic successor, providing a more open, extensible, and future-proof way to build multi-agent systems.
Connected Agents were a Foundry feature. A2A is an architectural standard.
Is AI Gateway mandatory for using A2A?
No, AI Gateway is not strictly mandatory, but it is recommended for most real-world and enterprise scenarios.
You can use A2A without AI Gateway if:
- Agents can reach each other over HTTP/HTTPS
- Authentication and security are handled directly by your implementation
AI Gateway becomes important when you need:
- Centralized authentication and authorization
- Governance, logging, and auditing
- Policy enforcement (quotas, content filtering, routing)
- A managed entry point for agent and tool traffic
So, AI Gateway is not required to make A2A work
AI Gateway is best practice for production, security, and governance
What is required to use A2A?
Core requirements
To use A2A, you need:
Agents that support the A2A protocol
Agents exposed via reachable HTTP/HTTPS endpoints
Proper authentication, typically:
- Microsoft Entra ID (managed identity / app registration), or
- API keys or another supported auth mechanism
Agents publishing their Agent Card (capabilities and metadata)
Without these, A2A communication cannot occur.
Environment & configuration
Correct networking configuration (VNet, firewall rules, outbound access)
Required RBAC roles for agent identities to access:
Azure OpenAI
Other Azure AI services
External tools or APIs
AI Gateway for centralized governance
Agent frameworks such as Semantic Kernel or LangChain
Structured tool exposure (MCP, HTTP tools) for richer agent collaboration.
Please refer this
I Hope this helps. Do let me know if you have any further queries.
If this answers your query, please do click Accept Answer and Yes for was this answer helpful.
Thank you!