list_patient_notes
List available clinical notes for a patient by subject ID. Returns note metadata including IDs, types, and lengths, filterable by note type.
Instructions
📋 List available clinical notes for a patient.
Returns note metadata (IDs, types, lengths) without full text. Use get_note(note_id) to retrieve specific notes.
Cross-dataset tip: Get subject_id from MIMIC-IV queries, then use it here to find related clinical notes.
Args: dataset: Dataset name, e.g. 'mimic-iv-note'. subject_id: Patient identifier (same as in MIMIC-IV). note_type: Type of notes to list ('discharge', 'radiology', or 'all'). limit: Maximum notes to return (default: 20).
Returns: List of available notes with metadata for the patient.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject_id | Yes | ||
| note_type | No | all | |
| limit | No | ||
| dataset | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |