searchPractitionersByName
Locate medical practitioners by entering their first name, last name, or a general name string using the Medplum MCP Server's search functionality.
Instructions
Searches for medical practitioners based on their given name, family name, or a general name string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
familyName | No | The practitioner's family (last) name. | |
givenName | No | The practitioner's given (first) name. | |
name | No | A general name search string for the practitioner. |
Input Schema (JSON Schema)
{
"properties": {
"familyName": {
"description": "The practitioner's family (last) name.",
"type": "string"
},
"givenName": {
"description": "The practitioner's given (first) name.",
"type": "string"
},
"name": {
"description": "A general name search string for the practitioner.",
"type": "string"
}
},
"required": [],
"type": "object"
}