Relm CRM
v0.17.1•Relm
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.
Skills
Manage contacts
Create, find, update and delete people. Email-optional; email is unique per workspace.
crmcontactsManage companies
Create and link accounts; contacts and deals reference them.
crmcompaniesManage deals
Open opportunities and move them across pipeline stages.
crmdealspipelineLog activities
Record notes, calls, emails and meetings, with backdating.
crmactivitiesAutomations
Create event-triggered rules and drip sequences, including send-email.
crmautomationsequencesWebhooks
Subscribe an https endpoint to CRM events; deliveries are HMAC-signed and retried.
crmwebhookseventsDescribe 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())