get_latest_glucose
Retrieve the most recent glucose reading for a user, including value, unit, timestamp, and data source to support diabetes management and health monitoring.
Instructions
Get the most recent glucose/blood sugar reading for a user. Returns value, unit, timestamp, and source.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | No | User identifier. Defaults to user_12345abcdef67890 if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "User identifier. Defaults to user_12345abcdef67890 if not specified.",
"type": "string"
}
},
"required": [],
"type": "object"
}