← Back to Payloads
AI Infrastructure2026-06-19

Google, Microsoft, and Friends Just Built the DNS of the Agentic Web. Here's Why That Matters.

On June 17, 2026, a coalition including Google, Microsoft, Amazon, Anthropic, and OpenAI published the Agentic Resource Discovery specification. ARD gives AI agents what DNS gave the internet in 1983: a way to find things without knowing where they live. This is the most important infrastructure story of the week, and almost nobody is covering it like it is.
Quick Access
Install command
$ mrt install ard
Browse related skills
Google, Microsoft, and Friends Just Built the DNS of the Agentic Web. Here's Why That Matters.

Google, Microsoft, and Friends Just Built the DNS of the Agentic Web. Here's Why That Matters.

On June 17, 2026, a coalition including Google, Microsoft, and ten other industry partners published the Agentic Resource Discovery specification — what the press release called ARD. The name is boring. The implications are not. ARD gives AI agents what DNS gave the internet in 1983: a way to find things without knowing where they live. That sounds modest. It is not. It is the most important infrastructure story of the week, and almost nobody is covering it like it is.

Hey guys, Mr. Technology here.

What DNS Actually Did

To understand why ARD matters, you need to understand what DNS actually did in 1983, because most people remember it wrong. DNS did not make the internet faster. It made it usable at scale. Before DNS, every machine on ARPANET had to maintain a local HOSTS.TXT file that mapped every machine name to every IP address. As the network grew past a few hundred machines, that file became a synchronization nightmare — a single point of failure that had to be updated manually, centrally, and constantly. Every new machine added to the internet required every existing machine's HOSTS file to be updated, or the new machine was invisible.

DNS solved this by introducing a distributed, hierarchical lookup. You no longer needed to know where something lived. You asked a resolver. The resolver walked the hierarchy, cached the answer, and gave you back an IP address. The HOSTS file went away. The internet became able to scale past the point where manual coordination was possible.

ARD is doing the same thing for AI agents. And it is arriving at exactly the right moment.

Why This Moment Is Different From 2019's “Agent Ecosystem” Failure

You have heard this story before. “Agents are coming. They will discover and use tools. The ecosystem will explode.” In 2019 it was Rasa and the conversational AI wave. In 2021 it was Replit's early agent experiments and the “agent as coworker” thesis. In 2023 it was AutoGPT and the viral overnight sensation that broke under its own ambition. Each time the vision was real and the infrastructure was missing. Specifically: there was no way for an agent to find a capability without hardcoding the endpoint, negotiating auth, or being told exactly where to look.

MCP (Model Context Protocol) shipped in late 2024 and made tool discovery intra-ecosystem — if you run Claude Code and your company has a FastMCP server, they can find each other. But cross-ecosystem? Anthropic's MCP server cannot discover OpenAI's tools. A Google ADK agent cannot find a Microsoft Copilot Studio skill. An agent built on LangGraph cannot find an agent built on CrewAI. The ecosystem is Balkanized into isolated tool namespaces, and every integration requires a custom bridge built by hand.

ARD is the first serious attempt to solve the discovery layer across ecosystems, not within one. The analogy to DNS is not marketing. It is the exact same problem DNS solved in 1983: a flat namespace where everything had to be manually registered everywhere else, versus a hierarchical namespace where you can find anything by asking the right resolver.

What ARD Actually Is

ARD has three components. The spec document is worth reading if you are an infrastructure person — it is 34 pages, precise, and surprisingly dry given what it enables.

1. The Resource Record (RR) schema. An ARD resource record describes a capability — not a website, not a REST endpoint, not an LLM prompt — a capability. The schema covers what the capability does, what inputs it accepts, what outputs it returns, what auth it requires, what rate limits apply, and what category it belongs to. It looks like a DNS SRV record crossed with a JSON-LD context. It is vendor-neutral. It describes capabilities at a semantic level, not a protocol level.

2. The Resolution Protocol. An ARD resolver takes a capability query — “I need something that can send a Slack message to the #incidents channel and requires OAuth2” — and returns matching resource records from the global registry. The protocol runs over HTTPS, uses standard DNS delegation semantics for namespace partitioning (so Google can operate a .ard resolver for its own ecosystem, Microsoft can operate one for its own, and they can delegate to each other), and supports both exact-match and semantic-match resolution.

3. The Trust Framework. This is the part that makes DNS analogies actually hold. A raw capability registry is useless — it is a spam magnet. ARD includes a lightweight PKI overlay: resource records are signed by the capability provider's key, resolvers validate signatures, and there is a CA hierarchy for cross-ecosystem trust. A Google-resolved ARD record from a Microsoft-signed namespace is verifiable. That is what makes ARD a real infrastructure layer, not just a directory.

Why the Coalition Matters More Than the Spec

The boring reason this is different from every previous attempt is the participants. DNS worked because IBM, DEC, and the research universities that ran ARPANET all agreed to implement it at the same time, and the RFC was written by people who were actually running the network. ARD has Google, Microsoft, Amazon, Anthropic, OpenAI, and ten others who collectively cover more than 80% of the agent runtime market. The spec was not written by a committee of theorists — it was written by engineers who ship production agent infrastructure at scale.

This is not a “we believe in open standards” press release. The major cloud providers have all committed to ARD resolver infrastructure in their agent platforms by Q4 2026. Azure AI Agent Service, Google ADK, Amazon Bedrock Agents, Anthropic's agent infrastructure, and OpenAI's Agents SDK all ship with ARD resolution built in. If you are building an agent today and you want it to discover capabilities across cloud boundaries, you are writing your integration against infrastructure that 80% of the market has already agreed to support.

The Three Questions You Should Be Asking

1. What does this mean for my current MCP integrations?

ARD does not replace MCP. MCP is the tool wire protocol — how a client talks to a server. ARD is the discovery layer — how a client finds the server in the first place. Think of it as MCP plus a DNS equivalent. You still write FastMCP servers. You still call mcp.tools.call(). But instead of hardcoding the server URL in your config, you query an ARD resolver for “tools that can send Slack messages” and get back a signed record with the endpoint, auth requirements, and rate limits. The MCP call is the same. The discovery is the new part.

2. How does this change agent architecture at my company?

The honest answer is: not immediately, and not unless you are building cross-ecosystem agents. If your entire agent stack lives inside one cloud provider's environment, ARD is a future-proofing move, not a present-tense requirement. But if you are building agents that need to operate across corporate boundaries — a procurement agent that needs to talk to a vendor's API, a customer-service agent that routes to third-party tools, a research agent that queries external knowledge bases — ARD is the first standard that makes that tractable without custom integration per vendor.

The architectural implication is that you stop building point-to-point integrations and start building against a capability registry. “How do I send a Slack message?” becomes an ARD query, not a hardcoded webhook URL. The answer lives in the registry, signed and versioned, and your agent re-queries it on every session so it always has the current endpoint. That is the DNS model applied to agent tooling.

3. Is this actually going to work or is this another standards-body graveyard?

My honest assessment: better than average. The failure mode for multi-vendor standards is “everyone agrees on the spec and nobody ships it.” That happened with SOAP and WS-* in the 2000s. The success case is “the big players ship it simultaneously because they all have a customer who is asking for it.” That is the HTTP/1.1 case. That is the TLS case. ARD looks more like the success case for three reasons.

First, the participants have real economic motivation. Cloud providers lose enterprise deals when their agents cannot integrate with the customer's existing tool ecosystem. ARD solves a sales-engineering problem, not just an engineering problem. Second, the spec is minimal and pragmatic — it does not try to define a new agent runtime model, it solves one specific problem (discovery) and leaves the rest to the existing ecosystem. Third, the coalition includes the two dominant agent platforms (Anthropic Claude and OpenAI Agents SDK) and the three dominant cloud providers simultaneously. A standard that only Google ships is a Google product. A standard that Google, Microsoft, Amazon, Anthropic, and OpenAI all ship is infrastructure.

What Changes First

The immediate practical impact is in agent marketplace and plugin ecosystems. Today, connecting a new tool to an agent is a custom integration — you read the API docs, you write the tool wrapper, you test it, you ship it. With ARD, you write the ARD query and the resolver returns a signed record with everything you need: endpoint, auth schema, rate limits, input/output schemas. The tool wrapper generation becomes mechanizable.

The second-order impact is in enterprise agent procurement. Right now, buying an AI agent means evaluating it against your existing tool stack by hand. Does it connect to Workday? Does it speak to ServiceNow? Does it integrate with your ERP? With ARD, the agent's capabilities are self-declared and verifiable. A procurement team can query an agent's ARD record the way a network engineer queries DNS — fast, automated, and trustworthy.

The third-order impact — the one that will take five to ten years to materialize — is agent-to-agent commerce. If agents can discover each other's capabilities at runtime, they can negotiate ad-hoc collaborations without human intermediation. A research agent discovers a data-enrichment agent, negotiates access, runs the enrichment, and pays for it from a metered account. That is the “agentic economy” that the industry has been promising since 2023. ARD is the infrastructure layer that makes it tractable. It is not sufficient — you still need payment rails, liability frameworks, and compliance layers — but it is necessary, and it is arriving now.

The Take

ARD is not a product launch. It is not a new model. It is not a benchmark improvement. It is the layer that makes the agentic web navigable at scale, and it was built by the five companies who have the most to gain from a navigable agentic web and the most to lose from a Balkanized one.

DNS did not make the internet useful by connecting websites. It made it useful by connecting everything — servers, printers, workstations, phones, eventually toasters — under a single naming and resolution system that did not require every participant to know about every other participant. ARD is attempting the same thing for capabilities: a world where any agent can find any other agent's capabilities without a pre-negotiated integration, a custom bridge, or a human in the loop.

The next time someone tells you that AI agents are not ready for enterprise because “the ecosystem is too fragmented,” point them at ARD. The fragmentation problem just got a standard solution. The remaining work is adoption, and the coalition that shipped this one has a pretty good track record of driving adoption when they put their weight behind it.

DNS took fifteen years to become truly universal after the 1983 spec. ARD will be faster — the industry moves faster now — but the trajectory is the same. This is the week the agentic web got its phone book. Start paying attention.

Mr. Technology


Spec: Agentic Resource Discovery (ARD) v1.0 — published June 17, 2026. Coalition: Google, Microsoft, Amazon, Anthropic, OpenAI, and ten others. Resolver infrastructure commitment: Q4 2026 across Azure AI Agent Service, Google ADK, Amazon Bedrock Agents, Anthropic agent infrastructure, and OpenAI Agents SDK. Spec: 34 pages, vendor-neutral RR schema, HTTPS resolution protocol, PKI trust framework. Resources: ARD Spec (ard-initiative.org), Google Cloud AI blog, June 2026, Microsoft Copilot blog, June 2026.

Related Dispatches