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 Subtask (lawmatics_get-subtask)

Fetch a single subtask (checklist item) from a Lawmatics task by ID, including a `relationships` envelope with an {id,type} pointer to the parent task.

Tool Input

taskIdstringrequired— ID of the parent task the subtask belongs to; a numeric string(pattern: ^\d+$)
subtaskIdstringrequired— ID of the subtask to fetch; a numeric string(pattern: ^\d+$)

Tool Output

idstringrequired— Unique ID of the subtask
bodystringrequired— Text content of the subtask
orderintegerrequired— Read-only zero-based position of the subtask within the parent task's checklist
donebooleanrequired— Whether the subtask is completed
createdAtstringrequired— When the subtask was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the subtask was last updated, as an ISO 8601 timestamp
relationshipsobjectrequired— JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow the pointer by calling that resource's own tool (type 'task' -> get-task).
taskobjectnullrequired— Parent task pointer (type 'task'); null when unreported
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

Related Tools