Summary
June 2026 made discovery look more like a first-class agent-system layer. The useful signal is not “another agent marketplace.” It is that capability search is being separated from capability execution. Hugging Face launched Agentic Resource Discovery (ARD) support on June 17, 2026, framing discovery as the layer in front of MCP tools, skills, and A2A agents. GitHub shipped agent finder the same day and positioned it as runtime search over approved capabilities instead of a giant preinstalled tool list.Why It Matters
Many agent stacks still rely on hard-wired MCP server URLs, manually installed skills, or oversized tool descriptions stuffed into the prompt. ARD points at a cleaner shape:- discovery is a separate job from execution
- registries search capabilities by intent before the model loads them
- publisher identity and trust data become part of the lookup surface
- enterprise policy can scope what an agent is even allowed to discover
- Protocols And Interoperability, because discovery now sits in front of MCP, A2A, and skill packages instead of replacing them
- Context Engineering, because search-backed capability selection keeps giant tool catalogs out of the context window
- Agent Runtime Building Blocks, because discovery becomes a distinct pre-execution layer in the runtime path
- Local Agent Tooling Source Map, because readers now need a clearer map of registries, skills, MCP servers, and remote tools
Evidence And Sources
- Agentic Resource Discovery: Let agents search for tools, skills, and other agents:
Hugging Face describes ARD as a draft open specification, explains the
ai-catalog.jsonmanifest plus dynamicPOST /searchregistry interface, and shows how its Discover tool can surface skills and MCP servers from the Hub. - Agent finder for GitHub Copilot now available: GitHub frames discovery as ranked runtime search across MCP servers, skills, canvases, agents, and tools, with enterprise-controlled registries and no silent auto-installation.
- MCP server usage in your company: GitHub’s docs make the governance story explicit: agent finder implements ARD, while MCP policy settings and registry controls decide what developers can discover and use.
- ARD specification:
the spec defines
/.well-known/ai-catalog.json, a REST registry baseline, artifact-agnostic media types, and optional trust manifests for identity and attestations. - huggingface/hf-discover: a current reference implementation that shows ARD as real code rather than only a draft document.
Signals To Watch
- Whether discovery stays cleanly separated from execution, approval, and installation instead of turning into silent auto-connection.
- Whether publisher identity, trust manifests, and enterprise allowlists become practical defaults rather than optional metadata nobody checks.
- Whether one discovery layer can span MCP servers, skills, A2A agents, and other artifacts without flattening their different trust and runtime models.
- Whether
/.well-known/ai-catalog.jsonand searchable registries become common publishing patterns outside the first wave of early adopters.
Editorial Take
This belongs inradar/ for now. The draft is promising, but the durable
lesson is narrower than “everyone needs ARD immediately.”
The reusable pattern is:
- publish capabilities in a machine-readable catalog
- let a registry index them
- search by user intent
- verify the publisher and trust metadata
- ask for approval where policy requires it
- only then connect over MCP, A2A, skills, or another execution surface
Update Log
- 2026-06-21: Added a June 2026 radar note on agentic resource discovery, searchable capability registries, trust metadata, and discovery-before-execution boundaries.
