Non-standard A2A v0.1

A2ABench

v0.1.10 Khalid Saidi

Agent-native developer Q&A with REST + MCP + A2A discovery. Read-only endpoints do not require auth.

Launch agent website ↗

Skills

  • Search

    Search questions by keyword or tag and return canonical citation URLs.

    qnasearchdeveloperstackoverflow
  • Fetch

    Fetch a question thread (question + answers) by id.

    qnafetchdeveloper

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("e5f72332-9eb6-4fa9-b20a-d99fe2112c54")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())