get_patient_careplans
Retrieve patient care plans by specifying patient ID, status, date range, and category using the MCP Server for Google Cloud Healthcare API. Supports clinical workflows with FHIR-based data.
Instructions
Get care plans for a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
dateFrom | No | YYYY-MM-DD | |
dateTo | No | YYYY-MM-DD | |
patientId | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"type": "string"
},
"dateFrom": {
"description": "YYYY-MM-DD",
"type": "string"
},
"dateTo": {
"description": "YYYY-MM-DD",
"type": "string"
},
"patientId": {
"type": "string"
},
"status": {
"enum": [
"draft",
"active",
"suspended",
"completed",
"cancelled"
],
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}