← Back to Paper List

LDP: An Identity-Aware Protocol for Multi-Agent LLM Systems

Sunil Prakash
Indian School of Business, Hyderabad, India
arXiv (2026)
Agent Memory Benchmark

📝 Paper Summary

Multi-agent communication protocols Agent interoperability Identity-aware routing
LDP is an AI-native communication protocol that exposes model-specific properties (identity, cost, quality) to enable efficient delegation, structured negotiation, and governance in multi-agent systems.
Core Problem
Current agent protocols like A2A and MCP treat models as opaque services, hiding critical metadata (parameter count, reasoning capability, cost) needed for effective delegation and routing.
Why it matters:
  • Routers cannot distinguish between a cheap 3B model and a reasoning-heavy 8B model based solely on generic skill names, leading to inefficient assignments
  • Stateless protocols require re-transmitting full conversation history for every request, incurring quadratic token costs
  • Lack of provenance tracking makes it impossible to verify the reliability or confidence of synthesized outputs from multiple agents
Concrete Example: When a router must choose between a 3B classification model and an 8B reasoning model, A2A only shows 'classification' vs 'reasoning' skills. The router cannot assess cost-quality tradeoffs, leading to using an expensive model for a simple task or a weak model for a complex one.
Key Novelty
AI-Native Delegate Protocol (LDP)
  • Introduces 'Delegate Identity Cards' that expose deep model properties (model family, reasoning profile, cost/quality hints) rather than just skill lists
  • Implements 'Progressive Payload Modes' where agents negotiate the most efficient communication format (e.g., structured JSON vs. text), falling back if validation fails
  • Establishes 'Governed Sessions' that maintain context state server-side to eliminate the token overhead of stateless re-invocation
Evaluation Highlights
  • Identity-aware routing achieves ~12x lower latency on easy tasks compared to baselines by correctly dispatching to smaller specialized models
  • Semantic frame payloads reduce token count by 37% (p=0.031) compared to natural language without observed quality loss
  • Governed sessions eliminate 39% token overhead at 10 conversation rounds compared to stateless re-invocation
Breakthrough Assessment
7/10
Strong architectural contribution addressing the specific needs of LLM agents (token costs, context limits) rather than generic API calls. Empirical results on token savings are significant, though the delegate pool size in experiments was small.
×