get_activities
Retrieve and summarize activities by date, project, and task within a specified range. Filter results by project ID to focus on specific work data in MoCo MCP Server.
Instructions
Get all activities within a date range with automatic summation by date, project, and task. Optionally filter by project ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in ISO 8601 format (YYYY-MM-DD) | |
projectId | No | Optional project ID to filter activities for a specific project | |
startDate | Yes | Start date in ISO 8601 format (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date in ISO 8601 format (YYYY-MM-DD)",
"type": "string"
},
"projectId": {
"description": "Optional project ID to filter activities for a specific project",
"exclusiveMinimum": 0,
"type": "number"
},
"startDate": {
"description": "Start date in ISO 8601 format (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}