Google、MicrosoftなどAIエージェントに関連する複数のベンダーは2026年6月17日、AIエージェントが利用するMCPサーバー、エージェントスキル、ACP、APIなどのリソースを公開、検索、検証するためのオープンな仕様
Announcing the Agentic Resource Discovery specification -Google Developers Blog
Introducing the Agentic Resource Discovery specification - Command Line
- Agentic Resource Discovery Specification
- URL:https://
agenticresourcediscovery. org/
Agents are part of a massive, interconnected ecosystem. But how do they find and trust each other across different platforms?
— Google for Developers (@googledevs) June 17, 2026
Today, we’re proud to announce the Agentic Resource Discovery (ARD), an open specification alongside industry partners (including Cisco, Databricks,… pic.twitter. com/ eCBCEvUrUK
AIエージェントが広く使用されるようになるにつれ、複数ベンダーのエージェントや利用するリソースが乱立し、どこに何があるかわからない状況が生じている。ARDは、こうしたエージェントとリソースをカタログ化、標準仕様とすることで、企業内外に散在するAIエージェントやツールを、統一的に見つけて連携を容易にすることを目的として作成されている。
ARDは以下の11社の協力によって作成された。
- Cisco
- Databricks
- GitHub
- GoDaddy
- Hugging Face
- Microsoft
- NVIDIA
- Salesforce
- ServiceNow
- Snowflake
Today's challenge is not just creating AI capabilities, it's finding them. We're introducing the Agentic Resource Discovery (ARD) specification, an open spec that establishes a secure common layer for publishing, indexing and discovering AI capabilities. Created by Microsoft,… pic.
— Microsoft Developer (@msdev) June 17, 2026twitter. com/ 6aei4NSZRc
ARDはカタログとレジストリを基本として構築される。カタログにはリソースの検索性を高めるため、エージェントが利用可能な機能をまとめたもの。このカタログは組織自身のドメインで直接ホストされるため、ドメインの所有権がIDとエージェントリソースの信頼性の暗号化基盤となる。またレジストリは、公開されているカタログをクロールし、その内容をインデックス化して検索可能にすることでエージェント型ウェブの検索エンジンとして機能する。エージェントが検索リクエストを送信すると、レジストリは一致する機能と、接続前に発行者を確認し信頼関係を確立するために必要なメタデータを返す。
ARDはAI Catalog仕様を標準基盤として構築されている。ARDにエージェントリソースを公開するには、まずai-catalog.
{
"specVersion": "1.0",
"host": {
"displayName": "Acme Dev Tools",
"identifier": "did:web:acme.com"
},
"entries": [
{
"identifier": "urn:ai:acme.com:server:weather",
"displayName": "Acme Weather Telemetry Server",
"type": "application/mcp-server+json",
"url": "https://api.acme.com/mcp/weather.json",
"capabilities": ["WeatherTool", "ForecastTool"],
"description": "An enterprise weather MCP server providing live telemetry.",
"representativeQueries": [
"what is the current wind speed in Chicago",
"get the 5-day forecast for Seattle"
]
}
]
}
次にai-catalog.
また、エージェントのユーザーや開発者がARDのGitHubリポジトリにアクセスしてARDの実装提案やフィードバックにより活動に参加することも期待されている。