get_patient_medications
Retrieve medication orders for a specific patient, filtered by status, using the MCP Server for Google Cloud Healthcare API. Supports active, completed, stopped, or on-hold medication statuses.
Instructions
Get medication orders for a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
patientId | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"patientId": {
"type": "string"
},
"status": {
"enum": [
"active",
"completed",
"stopped",
"on-hold"
],
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}