time_report
Time report for a date range: planned-vs-interruption totals, weekly rows, and top items — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:read permission).
Time report for a date range: planned-vs-interruption totals, weekly rows, and top items.
| Required permission | work:read |
| Capability ID | timeTracking.report |
| Destructive | No |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
from | string | yes | |
to | string | yes | |
projectId | string (uuid) | no | |
userId | string (uuid) | no |
Input schema (JSON Schema)
{
"type": "object",
"properties": {
"from": {
"type": "string",
"pattern": "/^\\d{4}-\\d{2}-\\d{2}$/"
},
"to": {
"type": "string",
"pattern": "/^\\d{4}-\\d{2}-\\d{2}$/"
},
"projectId": {
"type": "string",
"format": "uuid"
},
"userId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"from",
"to"
],
"additionalProperties": false
}Access control
A call succeeds only when the personal access token's scopes and the holder's role both allow work:read (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.
stop_timer
Stop the caller’s running timer and write a finalized time log (source=MCP) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
transfer_ownership
Transfer organization ownership to another member (Owner only) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the org:transfer permission).