Back to Tools

get_matter_status

Free

Retrieves the current status and details of a legal matter, including any pending actions, documents, and consultations associated with the matter.

Parameters

NameTypeRequiredDescription
session_tokenstring
Required
The session token from start_session
matter_idstring
Required
The matter ID from create_matter

Returns

NameTypeDescription
matter_idstringMatter identifier
titlestringMatter title
statusstringCurrent status
matter_typestringType of matter
documentsDocument[]Associated documents
consultationsConsultation[]Associated consultations

Example

typescript
const status = await mcp.callTool("get_matter_status", {
session_token: "sess_xyz789...",
matter_id: "mat_abc123..."
});
console.log(status.status); // "active"
console.log(status.documents.length); // 3