← Back to registry /

MoveHome.org Property Agent

A2A conformant A2A v0.3.0

MoveHome.org Property Agent

v0.1.0 Move Home Organisation CIC

Agent-to-agent access to the MoveHome.org property catalogue. Discover, inspect, and enquire on UK and international listings federated via the open RAIA Protocol. Read-only search and listing retrieval are anonymous; enquiries are forwarded to the source estate agent.

Launch agent website ↗

Skills

  • Search properties

    Search the MoveHome.org catalogue by location (UN/LOCODE), service type (long_term, short_term, sale), property type, bedrooms, and maximum price. Returns a paginated list of public listing cards.

    propertysearchreal-estatelettingssales
  • Get property

    Retrieve the full public card for a single listing by its raia_id (e.g. prop-gb-acme-12345678), including price, location, features and media.

    propertydetailreal-estate
  • Create enquiry

    Submit an enquiry against a listing on behalf of a prospective tenant or buyer. The enquiry is recorded and forwarded to the source estate agent. Requires enquirer name, email and a message; an optional viewing request with preferred dates may be included.

    propertyenquiryleadtransactviewing

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("dbfb33a9-c976-4107-a6b5-d534850f1d57")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())