get_patient_conditions
Retrieve a patient's medical conditions or diagnoses using their ID, with options to filter by onset date and status, leveraging the MCP Server for Google Cloud Healthcare API.
Instructions
Get medical conditions/diagnoses for a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
onsetDate | No | YYYY-MM-DD | |
patientId | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"onsetDate": {
"description": "YYYY-MM-DD",
"type": "string"
},
"patientId": {
"type": "string"
},
"status": {
"enum": [
"active",
"inactive",
"resolved"
],
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}