<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.secondtruth-labs.com/index.php?action=history&amp;feed=atom&amp;title=Agent_Network_Protocol</id>
	<title>Agent Network Protocol - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.secondtruth-labs.com/index.php?action=history&amp;feed=atom&amp;title=Agent_Network_Protocol"/>
	<link rel="alternate" type="text/html" href="http://wiki.secondtruth-labs.com/index.php?title=Agent_Network_Protocol&amp;action=history"/>
	<updated>2026-06-15T09:35:06Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>http://wiki.secondtruth-labs.com/index.php?title=Agent_Network_Protocol&amp;diff=11&amp;oldid=prev</id>
		<title>imported&gt;Import at 16:36, 31 December 2025</title>
		<link rel="alternate" type="text/html" href="http://wiki.secondtruth-labs.com/index.php?title=Agent_Network_Protocol&amp;diff=11&amp;oldid=prev"/>
		<updated>2025-12-31T16:36:32Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Infobox protocol&lt;br /&gt;
| name            = Agent Network Protocol&lt;br /&gt;
| developer       = ANP Community&lt;br /&gt;
| status          = Draft&lt;br /&gt;
| first_published = 2025&lt;br /&gt;
| transport       = [[wp:HTTPS|HTTPS]]&lt;br /&gt;
| encoding        = [[wp:JSON-LD|JSON-LD]]&lt;br /&gt;
| license         = [[wp:MIT License|MIT]]&lt;br /&gt;
| website         = https://agentnetworkprotocol.com&lt;br /&gt;
| spec_url        = https://agent-network-protocol.com/specs/&lt;br /&gt;
| repository      = https://github.com/agent-network-protocol/AgentNetworkProtocol&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &amp;#039;&amp;#039;&amp;#039;Agent Network Protocol&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;#039;ANP&amp;#039;&amp;#039;&amp;#039;) is an open-source communication protocol designed to become the &amp;quot;HTTP of the Agentic Web era.&amp;quot; It provides a decentralized framework for AI agents to discover, authenticate, and interact across the open internet using W3C standards and semantic web technologies.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
ANP aims to address fundamental limitations in existing internet infrastructure for agent-to-agent communication. While current protocols are optimized for human interaction, ANP creates an AI-native network where agents can communicate directly without mimicking human interfaces.&lt;br /&gt;
&lt;br /&gt;
=== Vision ===&lt;br /&gt;
&lt;br /&gt;
The ANP project envisions a transformation from platform-centric to protocol-centric internet architecture, where:&lt;br /&gt;
&lt;br /&gt;
* Agents replace traditional software applications&lt;br /&gt;
* Universal agent interconnection becomes possible&lt;br /&gt;
* Native protocol-based connections replace web scraping&lt;br /&gt;
* Agents self-organize and collaborate autonomously&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
&lt;br /&gt;
ANP uses a three-layer architecture:&lt;br /&gt;
&lt;br /&gt;
=== Identity Layer ===&lt;br /&gt;
&lt;br /&gt;
Based on [[wp:Decentralized identifier|W3C DID]] (Decentralized Identifiers) standards, this layer provides:&lt;br /&gt;
&lt;br /&gt;
* Decentralized identity authentication&lt;br /&gt;
* End-to-end encrypted communication&lt;br /&gt;
* Cross-platform identity verification&lt;br /&gt;
&lt;br /&gt;
ANP specifically uses the &amp;lt;code&amp;gt;did:wba&amp;lt;/code&amp;gt; method, where identifiers correspond to HTTPS-hosted DID documents.&lt;br /&gt;
&lt;br /&gt;
=== Meta-Protocol Layer ===&lt;br /&gt;
&lt;br /&gt;
Enables dynamic protocol negotiation between agents:&lt;br /&gt;
&lt;br /&gt;
* Automatic capability discovery&lt;br /&gt;
* Protocol version negotiation&lt;br /&gt;
* Communication method selection&lt;br /&gt;
&lt;br /&gt;
=== Application Layer ===&lt;br /&gt;
&lt;br /&gt;
Built on semantic web technologies:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Agent Description Protocol (ADP)&amp;#039;&amp;#039;&amp;#039; – Structured capability descriptions&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Agent Discovery Protocol&amp;#039;&amp;#039;&amp;#039; – Finding agents on the network&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;JSON-LD&amp;#039;&amp;#039;&amp;#039; based data exchange&lt;br /&gt;
&lt;br /&gt;
== Technical specification ==&lt;br /&gt;
&lt;br /&gt;
=== Agent Description ===&lt;br /&gt;
&lt;br /&gt;
Agents describe themselves using JSON-LD with schema.org vocabularies:&lt;br /&gt;
&lt;br /&gt;
{{Code example&lt;br /&gt;
| language = json&lt;br /&gt;
| caption  = Example agent description&lt;br /&gt;
| code     = {&lt;br /&gt;
  &amp;quot;@context&amp;quot;: &amp;quot;https://schema.org&amp;quot;,&lt;br /&gt;
  &amp;quot;@type&amp;quot;: &amp;quot;SoftwareAgent&amp;quot;,&lt;br /&gt;
  &amp;quot;name&amp;quot;: &amp;quot;Research Assistant&amp;quot;,&lt;br /&gt;
  &amp;quot;description&amp;quot;: &amp;quot;AI agent for academic research&amp;quot;,&lt;br /&gt;
  &amp;quot;capabilities&amp;quot;: [&lt;br /&gt;
    &amp;quot;literature_search&amp;quot;,&lt;br /&gt;
    &amp;quot;summarization&amp;quot;&lt;br /&gt;
  ],&lt;br /&gt;
  &amp;quot;endpoint&amp;quot;: &amp;quot;https://agent.example.com/api&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Identity verification ===&lt;br /&gt;
&lt;br /&gt;
Agents authenticate using DID documents hosted at well-known URLs:&lt;br /&gt;
&lt;br /&gt;
{{Code example&lt;br /&gt;
| language = text&lt;br /&gt;
| caption  = DID resolution&lt;br /&gt;
| code     = did:wba:agent.example.com:research&lt;br /&gt;
→ https://agent.example.com/.well-known/did.json&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Standardization ==&lt;br /&gt;
&lt;br /&gt;
The ANP community has initiated the &amp;#039;&amp;#039;&amp;#039;AI Agent Protocol Community Group&amp;#039;&amp;#039;&amp;#039; at the [[wp:World Wide Web Consortium|W3C]] to advance standardization. The first meeting was held in June 2025.&lt;br /&gt;
&lt;br /&gt;
== Comparison with other protocols ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Aspect !! ANP !! [[Agent-to-Agent Protocol|A2A]] !! [[Model Context Protocol|MCP]]&lt;br /&gt;
|-&lt;br /&gt;
| Scope || Internet-scale || Enterprise || Application&lt;br /&gt;
|-&lt;br /&gt;
| Identity || Decentralized (DID) || Centralized || N/A&lt;br /&gt;
|-&lt;br /&gt;
| Data format || JSON-LD || JSON-RPC || JSON-RPC&lt;br /&gt;
|-&lt;br /&gt;
| Discovery || Decentralized || Agent Cards || Server registration&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Agent-to-Agent Protocol]]&lt;br /&gt;
* [[Agent Communication Protocol]]&lt;br /&gt;
* [[Model Context Protocol]]&lt;br /&gt;
* [[wp:Decentralized identifier]]&lt;br /&gt;
* [[Agentic Web]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://agentnetworkprotocol.com Official website]&lt;br /&gt;
* [https://agent-network-protocol.com/specs/ Technical specifications]&lt;br /&gt;
* [https://github.com/agent-network-protocol/AgentNetworkProtocol GitHub repository]&lt;br /&gt;
* [https://arxiv.org/abs/2508.00007 Technical white paper]&lt;br /&gt;
* [https://www.w3.org/community/ai-agent-protocol/ W3C Community Group]&lt;br /&gt;
&lt;br /&gt;
[[Category:Communication Protocols]]&lt;br /&gt;
[[Category:Agent Communication]]&lt;br /&gt;
[[Category:Decentralized Protocols]]&lt;br /&gt;
[[Category:Community Standards]]&lt;/div&gt;</summary>
		<author><name>imported&gt;Import</name></author>
	</entry>
</feed>