Non-standard A2A vunknown

pyrimid

v1.0.0 Pyrimid Protocol

Agent-commerce infrastructure for paid MCP tools and AI/API products. Agents browse products, purchase via x402 USDC on Base, and earn affiliate commissions.

Launch agent website ↗

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("0e4e71d3-08d7-422a-9c00-4d7516bc0c0f")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())