getPatientById
Retrieve patient details using their unique ID to access healthcare data stored in Medplum FHIR servers through the Medplum MCP Server.
Instructions
Retrieves a patient resource by their unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
patientId | Yes | The unique ID of the patient to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"patientId": {
"description": "The unique ID of the patient to retrieve.",
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}