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.

List Collection Items (lawmatics_list-collection-items)

List collection items from Lawmatics with optional pagination, filtering, and sorting. Filter by the parent collection id or the attached matter id to find the rows of one Collection or matter.

Tool Input

pageinteger— Page number (1-based)(> 0)
filterobject— Optional single-field filter; one filter at a time
fieldstringrequired— Field to filter on: collection_id (numeric id of the parent Collection), contactable_id (numeric id of the matter the item is attached to), contactable_type (always Prospect = matter; the API rejects other record types on create), created_at, or updated_at (dates)(enum: "collection_id", "contactable_id", "contactable_type", "created_at", "updated_at")
operatorstring— Comparison operator. Omit to use the Lawmatics per-field default (= for ids/dates, ilike for strings). Use = for id fields and a range operator (e.g. >) for created_at(enum: "=", "!=", "<", "<=", ">", ">=", "like", "ilike", "null", "not_null")
valuestringrequired— Value to compare against (ignored for null / not_null operators)
sortBystring— Column to sort by(enum: "id", "created_at", "updated_at")
sortOrderstring— Sort direction; ascending or descending(enum: "asc", "desc")

Tool Output

collectionItemsarrayrequired— Collection items on this page of results
[]object
idstringrequired— Unique ID of the collection item
collectionIdstringrequired— ID of the parent Collection this item belongs to, as a numeric string
ownerTypestringrequired— Type of the record this item is attached to as returned by the API — always "Prospect" (a matter) today; the live API rejects other record types on create
ownerIdstringrequired— ID of the record this item is attached to, as a numeric string
customFieldValuesarrayrequired— Cell values stored on this item, one per Collection custom field; empty if none
1 field
[]object
6 fields
idstringrequired— ID of this stored cell value row, as a numeric string
customFieldIdstringrequired— ID of the Collection custom field definition this value belongs to, as a numeric string
namestringnullrequired— Custom field display name; null if not reported
fieldTypestringnullrequired— Custom field data type (e.g. text, date, select); null if not reported
valueanyrequired— Raw stored cell value; type varies by fieldType; null if unset
formattedValueanyrequired— Display-formatted cell value; type varies by fieldType; null if not reported
createdAtstringrequired— When the item was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the item was last updated, as an ISO 8601 timestamp
paginationobjectrequired— Pagination metadata derived from the API `meta` envelope
totalPagesnumbernullrequired— Total number of pages available; null if not reported
limitPerPagenumbernullrequired— Maximum collection items returned per page; null if not reported
totalEntriesnumbernullrequired— Total number of collection items across all pages; null if not reported

Related Tools