createPractitioner
Add a new medical practitioner to the Medplum MCP Server by providing the required given name and family name.
Instructions
Creates a new medical practitioner. Requires given name and family name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
familyName | Yes | The practitioner's family (last) name. | |
givenName | Yes | The practitioner's given (first) name. |
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"
}
},
"required": [
"givenName",
"familyName"
],
"type": "object"
}