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
| Name | Type | Required | Description |
|---|---|---|---|
| session_token | string | Required | The session token from start_session |
| matter_id | string | Required | The matter ID from create_matter |
Returns
| Name | Type | Description |
|---|---|---|
| matter_id | string | Matter identifier |
| title | string | Matter title |
| status | string | Current status |
| matter_type | string | Type of matter |
| documents | Document[] | Associated documents |
| consultations | Consultation[] | 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