get_total_worklogs
Calculate total logged time for a specific project by providing its unique identifier through the Plane MCP Server, aiding in tracking project progress.
Instructions
Get total logged time for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to get total worklogs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project to get total worklogs for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}