get_elapsed_time
Retrieve the elapsed time for any tracked activity using its unique identifier, enabling precise duration monitoring within the Chronos Protocol MCP server.
Instructions
Get the elapsed time for an ongoing or completed activity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityId | Yes | Unique identifier of the activity log |
Input Schema (JSON Schema)
{
"properties": {
"activityId": {
"description": "Unique identifier of the activity log",
"type": "string"
}
},
"required": [
"activityId"
],
"type": "object"
}