Research Papers 论文研究 4h ago Updated 2h ago 更新于 2小时前 49

AI Tool Discovery at Scale: All You Need is DNS 大规模AI工具发现:你只需要DNS

The paper introduces ToolDNS, a framework that leverages the Domain Name System (DNS) for scalable, decentralized AI tool discovery. It replaces expensive O(N) semantic searches with efficient O(log N) name resolutions by embedding intent and trust into hierarchical namespaces. Three protocol-compliant enhancements are proposed: partially unfolded names, EDNS0 intent payloads, and logical subdomains. Evaluation on a benchmark of 33,688 tools shows a 95.26% reduction in search space while maintai 提出ToolDNS框架,利用现有DNS基础设施实现大规模AI工具的语义发现,解决传统方案O(N)复杂度和中心化治理瓶颈。 通过部分展开名称、EDNS0意图负载和逻辑子域三项协议增强,将昂贵的语义搜索转化为轻量的O(log N)名称解析。 构建包含33,688个真实工具(覆盖MCP、A2A、RESTful等协议)的大规模异构基准测试以验证方案有效性。 在匹配最先进检索准确率的同时,将每次查询的搜索空间减少95.26%,并利用UDP原生设计显著降低发现延迟。

65
Hot 热度
75
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • The paper introduces ToolDNS, a framework that leverages the Domain Name System (DNS) for scalable, decentralized AI tool discovery.
  • It replaces expensive O(N) semantic searches with efficient O(log N) name resolutions by embedding intent and trust into hierarchical namespaces.
  • Three protocol-compliant enhancements are proposed: partially unfolded names, EDNS0 intent payloads, and logical subdomains.
  • Evaluation on a benchmark of 33,688 tools shows a 95.26% reduction in search space while maintaining state-of-the-art retrieval accuracy.
  • The UDP-native design significantly reduces discovery latency compared to traditional HTTP-based registries.

Why It Matters

This approach addresses the critical bottleneck of tool discovery in autonomous AI agent ecosystems, where current centralized or overlay-based solutions struggle with scale and latency. By utilizing existing internet infrastructure, it offers a robust, low-latency alternative that could accelerate the deployment of interoperable multi-agent systems.

Technical Details

  • Architecture: ToolDNS maps semantic tool metadata onto DNS records, allowing agents to resolve tool capabilities via standard DNS queries.
  • Enhancements: Implements EDNS0 extensions to carry intent payloads, uses logical subdomains for hierarchical organization, and employs partially unfolded names to optimize query paths.
  • Benchmark: Introduces a heterogeneous dataset of 33,688 real-world tools supporting MCP, A2A, RESTful, and Skill protocols.
  • Performance: Achieves O(log N) complexity for discovery, reducing query time and computational overhead compared to linear search methods.

Industry Insight

  • Infrastructure providers should consider integrating semantic discovery layers into existing DNS or similar naming services to support the growing demand for AI agent interoperability.
  • AI platform developers can adopt DNS-based discovery to reduce dependency on centralized registries, enhancing resilience and scalability for large-scale agent deployments.
  • Standardization bodies may need to define protocols for encoding AI tool intents within DNS records to ensure cross-platform compatibility.

TL;DR

  • 提出ToolDNS框架,利用现有DNS基础设施实现大规模AI工具的语义发现,解决传统方案O(N)复杂度和中心化治理瓶颈。
  • 通过部分展开名称、EDNS0意图负载和逻辑子域三项协议增强,将昂贵的语义搜索转化为轻量的O(log N)名称解析。
  • 构建包含33,688个真实工具(覆盖MCP、A2A、RESTful等协议)的大规模异构基准测试以验证方案有效性。
  • 在匹配最先进检索准确率的同时,将每次查询的搜索空间减少95.26%,并利用UDP原生设计显著降低发现延迟。

为什么值得看

本文提供了一种极具颠覆性的思路,即不构建新的中间件层,而是通过改造底层网络基础设施来解决AI智能体互操作性中的可扩展性问题。对于关注Agent生态、API治理及分布式系统架构的研究者与工程师而言,这种“旧瓶装新酒”的技术路径具有重要的参考价值。

技术解析

  • 核心架构:ToolDNS将功能意图和组织信任嵌入分层命名空间,利用DNS的层级结构实现去中心化治理和语义剪枝,替代传统的集中式注册表。
  • 协议增强:引入三种符合DNS协议标准的改进措施:部分展开名称(partially unfolded names)、EDNS0意图负载(EDNS0 intent payloads)以及逻辑子域(logical subdomains),以支持复杂的语义查询。
  • 性能表现:实验显示,该方案能将单次查询的搜索空间削减95.26%,同时保持与SOTA相当的检索精度;其基于UDP的设计使得发现延迟比基于HTTP的注册表低几个数量级。
  • 评估基准:发布了涵盖MCP、A2A、RESTful和Skill等多种协议的33,688个真实世界工具组成的异构基准数据集,为后续研究提供了标准化的评估依据。

行业启示

  • 基础设施复用策略:在AI Agent爆发式增长背景下,利用现有成熟且高可用的互联网底层协议(如DNS)进行扩展,可能比开发全新的专用服务更具鲁棒性和经济性。
  • 标准化与互操作性:随着工具种类激增,建立统一的语义发现标准至关重要;ToolDNS尝试通过命名空间标准化来解决碎片化问题,为行业提供了新的标准化思路。
  • 去中心化治理趋势:面对中心化方案的性能瓶颈和单点故障风险,向去中心化、分布式的工具发现机制演进是保障大规模AI系统稳定运行的必然趋势。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Agent Agent Research 科学研究 Open Source 开源