A2A conformantA2A v0.3.0

Relm CRM

v0.17.1Relm

An API-first CRM built for LLMs and AI agents. Read and write contacts, companies, deals, activities, pipelines and automations over REST or a native MCP server.

Launch agent website ↗

Skills

  • Manage contacts

    Create, find, update and delete people. Email-optional; email is unique per workspace.

    crmcontacts
  • Manage companies

    Create and link accounts; contacts and deals reference them.

    crmcompanies
  • Manage deals

    Open opportunities and move them across pipeline stages.

    crmdealspipeline
  • Log activities

    Record notes, calls, emails and meetings, with backdating.

    crmactivities
  • Automations

    Create event-triggered rules and drip sequences, including send-email.

    crmautomationsequences
  • Webhooks

    Subscribe an https endpoint to CRM events; deliveries are HMAC-signed and retried.

    crmwebhooksevents
  • Describe schema

    Read the live object/field/enum registry so writes are never based on a guess.

    crmschemadiscovery

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("0e4c2c1e-728e-4de8-92b9-b971ab9edbb9")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())