View as .md ↗
Lawmatics

Lawmatics

MCP server · Practice Management · lawmatics.com · 40 categories · 177 tools

Lawmatics is a legal CRM, client intake, and marketing automation platform for law firms. This integration exposes contacts, companies, matters, billing (invoices, transactions, expenses, time entries), tasks, documents, events, and marketing data as governed MCP tools, scoped per member by access level.

Get Event (lawmatics_get-event)

Fetch a single event (appointment) from Lawmatics by ID, including its schedule, reminder settings, location, attendee details, cancellation state, and a `relationships` envelope of {id,type} pointers to related records (the matter/contact it is with, event type, address, location, and hosting firm users).

Tool Input

eventIdstringrequired— ID of the event (appointment) to retrieve; a numeric string(pattern: ^\d+$)

Tool Output

idstringrequired— Lawmatics event (appointment) ID
namestringrequired— Name/title of the event
descriptionstringnullrequired— Description of the event; null if unset
timeZonestringnullrequired— IANA tz identifier the event is scheduled in (e.g. "America/Los_Angeles"); null if unset
startDatestringnullrequired— When the event starts, as an ISO 8601 timestamp; null when the date has been cleared
endDatestringnullrequired— When the event ends, as an ISO 8601 timestamp; null when the date has been cleared
allDaybooleannullrequired— True when the event is an all-day event; null when never explicitly set (treat as not all-day)
reminderTypestringnullrequired— Unit for the reminder delay ("minutes", "hours", "days", "weeks", "months"); null when no reminder is configured
reminderDelayLengthnumbernullrequired— How many reminderType units before the event the reminder is sent; null when no reminder is configured
reminderSentbooleanrequired— True when the reminder has already been sent
locationobjectnullrequired— Firm location the event is held at; null when no location is set
idnumberrequired— Lawmatics event location ID
namestringrequired— Name of the event location
addressIdnumbernullrequired— ID of the address record for the location; null for virtual locations (e.g. a Zoom URL venue)
sendInvitesbooleannullrequired— Whether calendar invites are sent to attendees; null if unset
eventTypeIdnumberrequired— ID of the event type this event belongs to
attendeeNamestringnullrequired— Name of the attendee, derived from the attached record; null when unavailable
attendeeEmailstringnullrequired— Email of the attendee, derived from the attached record; null when unavailable
attendeePhonestringnullrequired— Phone of the attendee, derived from the attached record; null when unavailable
locationNamestringnullrequired— Display name of the event location; null when no location is set
locationAddressstringnullrequired— Formatted street address of the event location; null when no location is set
zoomMeetingUrlstringnullrequired— Zoom meeting URL for the event; null when no Zoom meeting is linked
canceledAtstringnullrequired— When the appointment was canceled, as an ISO 8601 timestamp; null when not canceled. Canceled events remain retrievable.
createdAtstringrequired— When the event record was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the event record was last updated, as an ISO 8601 timestamp
relationshipsobjectrequired— JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get/find tool (e.g. type 'prospect' -> get-matter, type 'contact' -> get-contact, type 'user' -> get-user).
eventableobjectnullrequired— The matter/contact the appointment is with (type "prospect" for a matter, "contact"); null when the event is unattached
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
eventTypeobjectnullrequired— Event type pointer; null when unset
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
addressobjectnullrequired— Linked address-record pointer; null when none is linked
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
locationobjectnullrequired— Firm location pointer; null when no location is set
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
usersarrayrequired— Hosting/attending firm-user pointers; empty array if none
[]object
2 fields
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference; resolve it by calling that resource's own tool

Related Tools