find_patient
Search for patients using demographic details like name, birth date, and gender. Part of the MCP Server for Google Cloud Healthcare API, designed for FHIR-based health solutions.
Instructions
Search for a patient by demographics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
birthDate | No | YYYY-MM-DD format | |
firstName | No | ||
gender | No | ||
lastName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"birthDate": {
"description": "YYYY-MM-DD format",
"type": "string"
},
"firstName": {
"type": "string"
},
"gender": {
"enum": [
"male",
"female",
"other",
"unknown"
],
"type": "string"
},
"lastName": {
"type": "string"
}
},
"required": [
"lastName"
],
"type": "object"
}