getPractitionerById
Retrieve a healthcare practitioner's details using their unique ID with Medplum MCP Server, enabling quick access to practitioner resources for healthcare data management.
Instructions
Retrieves a practitioner resource by their unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
practitionerId | Yes | The unique ID of the practitioner to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"practitionerId": {
"description": "The unique ID of the practitioner to retrieve.",
"type": "string"
}
},
"required": [
"practitionerId"
],
"type": "object"
}