getMedicationById
Retrieve specific medication details by entering its unique ID to access accurate healthcare data from the Medplum MCP Server.
Instructions
Retrieves a medication by its unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
medicationId | Yes | The unique ID of the medication to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"medicationId": {
"description": "The unique ID of the medication to retrieve.",
"type": "string"
}
},
"required": [
"medicationId"
],
"type": "object"
}