Skip to main content

Connect AI agents across any network — no public IP needed. P2P encrypted, NAT-traversing, zero-config on LAN.

Project description

AgentAnycast Python SDK

Build P2P agents in Python. Discover, communicate, and collaborate with AI agents across any network -- encrypted, decentralized, NAT-traversing.

CI PyPI Python License

pip install agentanycast

Try it now -- start a demo agent in one command:

agentanycast demo

The daemon downloads automatically on first run. The demo prints the exact command to test it from another terminal.

Quick Start

Create an agent:

from agentanycast import Node, AgentCard, Skill

card = AgentCard(
    name="EchoAgent",
    description="Echoes back any message",
    skills=[Skill(id="echo", description="Echo the input")],
)

async with Node(card=card) as node:
    @node.on_task
    async def handle(task):
        text = task.messages[-1].parts[0].text
        await task.complete(artifacts=[{"parts": [{"text": f"Echo: {text}"}]}])

    print(f"Agent running — Peer ID: {node.peer_id}")
    await node.serve_forever()

Send a task to another agent:

async with Node(card=card) as node:
    handle = await node.send_task(
        peer_id="12D3KooW...",
        message={"role": "user", "parts": [{"text": "Hello!"}]},
    )
    result = await handle.wait()
    print(result.artifacts[0].parts[0].text)  # "Echo: Hello!"

Three Ways to Send a Task

# Direct — by Peer ID
await node.send_task(peer_id="12D3KooW...", message=msg)

# Anycast — by skill (relay resolves the target)
await node.send_task(skill="translate", message=msg)

# HTTP Bridge — to standard HTTP A2A agents
await node.send_task(url="https://agent.example.com", message=msg)

CLI

Add --verbose (or -v) before any command for debug output:

agentanycast --verbose demo
agentanycast demo                        # Start an echo agent
agentanycast discover translate          # Find agents by skill
agentanycast send 12D3KooW... "Hello!"   # Send a task
agentanycast status                      # Check node status
agentanycast info                        # Show Peer ID, DID, version

How It Works

┌─────────────┐         mDNS / Relay         ┌─────────────┐
│  Agent A    │<------------------------------>│  Agent B    │
│  (Python)   │     E2E encrypted (Noise)     │  (Python)   │
└──────┬──────┘                               └──────┬──────┘
       | gRPC                                        | gRPC
┌──────┴──────┐                               ┌──────┴──────┐
│ agentanycastd│                               │ agentanycastd│
│  (Go daemon)│<---------- libp2p ------------>│  (Go daemon) │
└─────────────┘                               └──────────────┘
  • LAN -- agents discover each other via mDNS. Zero configuration.
  • WAN -- deploy a self-hosted relay and point agents to it.
  • The Go daemon is auto-downloaded and managed by the SDK. No manual setup.

Framework Adapters

Turn existing frameworks into P2P agents with one function call:

pip install agentanycast[crewai]         # CrewAI
pip install agentanycast[langgraph]      # LangGraph
pip install agentanycast[google-adk]     # Google ADK
pip install agentanycast[openai-agents]  # OpenAI Agents SDK
pip install agentanycast[claude]         # Claude Agent SDK
pip install agentanycast[strands]        # AWS Strands Agents
from agentanycast.adapters.crewai import serve_crew
from agentanycast.adapters.langgraph import serve_graph
from agentanycast.adapters.adk import serve_adk_agent
from agentanycast.adapters.openai_agents import serve_openai_agent
from agentanycast.adapters.claude_agent import serve_claude_agent
from agentanycast.adapters.strands import serve_strands_agent

await serve_crew(crew, card=card, relay="...")
await serve_graph(graph, card=card, relay="...")
await serve_adk_agent(agent, card=card, relay="...")
await serve_openai_agent(agent, card=card, relay="...")
await serve_claude_agent(prompt_template="...", card=card)
await serve_strands_agent(agent, card=card)

Skill Discovery

agents = await node.discover("translate")
agents = await node.discover("translate", tags={"lang": "fr"})

Interoperability

# W3C DID
from agentanycast.did import peer_id_to_did_key, did_key_to_peer_id
did = peer_id_to_did_key("12D3KooW...")      # "did:key:z6Mk..."
pid = did_key_to_peer_id("did:key:z6Mk...")  # "12D3KooW..."

# MCP Tool <-> A2A Skill mapping
from agentanycast.mcp import mcp_tools_to_agent_card
card = mcp_tools_to_agent_card(mcp_tools, name="MCPAgent")

# A2A v1.0 JSON format
from agentanycast.compat.a2a_v1 import task_to_a2a_json, task_from_a2a_json

# OASF / AGNTCY Directory
from agentanycast.compat.oasf import card_to_oasf_record
from agentanycast.compat.agntcy import AGNTCYDirectory

API Reference

Node

Method Description
Node(card, relay?, home?, ...) Create a node with an AgentCard and optional config
async with Node(...) as node Context manager -- starts/stops daemon automatically
send_task(peer_id?, skill?, url?, message=) Send a task using any addressing mode
discover(skill, tags?) Find agents by skill with optional tag filtering
on_task(handler) Register handler for incoming tasks
serve_forever() Block and process incoming tasks until stopped

Core Types

Class Description
AgentCard Agent identity, capabilities, and metadata
Skill A single capability an agent can perform
TaskHandle Returned by send_task(). Call wait() for the result.
IncomingTask Passed to task handlers. Provides message data and response methods.

Node Options

Parameter Description Default
card Agent's AgentCard Required
relay Relay multiaddr for cross-network communication None (LAN only)
daemon_path Path to a local agentanycastd binary Auto-download
daemon_addr Address of an externally managed daemon Auto-managed
key_path Path to Ed25519 identity key file <home>/key
home Data directory. Use different values for multiple nodes. ~/.agentanycast
status_callback Optional callback for progress messages (download, startup) None

Development

pip install -e ".[dev]"    # Install in editable mode with dev deps
pytest                     # Run all tests
ruff check .               # Lint
ruff format .              # Format
mypy src/                  # Type check (strict)

Requirements

  • Python 3.10+
  • The agentanycastd daemon (auto-managed by the SDK)

Part of AgentAnycast -- see the main repo for architecture docs, protocol reference, and examples.

License

Apache License, Version 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentanycast-0.7.2.tar.gz (105.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentanycast-0.7.2-py3-none-any.whl (84.2 kB view details)

Uploaded Python 3

File details

Details for the file agentanycast-0.7.2.tar.gz.

File metadata

  • Download URL: agentanycast-0.7.2.tar.gz
  • Upload date:
  • Size: 105.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for agentanycast-0.7.2.tar.gz
Algorithm Hash digest
SHA256 0b379989644d61de4f8e4a223b23f4ed647855fe329e50c131dd0e04323a8a3e
MD5 fc9eaa5b71aa73fdc2df4e31ca921a34
BLAKE2b-256 f1ff6a3a69f6b4fca4228c39f0aea965f20721f83330c7c2ece39489d3316384

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentanycast-0.7.2.tar.gz:

Publisher: release.yml on AgentAnycast/agentanycast-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentanycast-0.7.2-py3-none-any.whl.

File metadata

  • Download URL: agentanycast-0.7.2-py3-none-any.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for agentanycast-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2e1b75a55dd5f22d36bc7846fa89dd6075a968f8ecb5e9ebdeeaabf7b3e3fb02
MD5 0b156ec2882630ec375269619c913c78
BLAKE2b-256 9c9a30457e428331371b78388a57b4227fb43d969404f983643ca010fca0f20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentanycast-0.7.2-py3-none-any.whl:

Publisher: release.yml on AgentAnycast/agentanycast-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page