get-case
Retrieve detailed information about a specific eDiscovery case by providing the organization and case IDs, designed for enterprise use within the Miro MCP server.
Instructions
Retrieves information about a specific eDiscovery case (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case you want to retrieve | |
orgId | Yes | The ID of the organization for which you want to retrieve the case information |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"caseId": {
"description": "The ID of the case you want to retrieve",
"type": "string"
},
"orgId": {
"description": "The ID of the organization for which you want to retrieve the case information",
"type": "string"
}
},
"required": [
"orgId",
"caseId"
],
"type": "object"
}