get-project-template-list
Retrieve available task templates for a Dooray project to create tasks with predefined structures like bug reports or feature requests. Supports pagination for large template lists.
Instructions
Get list of project task templates.
Templates are pre-created task structures with predefined title and body content. This tool retrieves all available templates in a project.
URL Pattern Recognition: When given a Dooray URL like "https://nhnent.dooray.com/task/PROJECT_ID", extract the PROJECT_ID (the first numeric ID after "/task/") and use it as the projectId parameter.
Note: Returns compact response with essential fields only (id and templateName).
Pagination:
Default page size is 20 (maximum: 100)
Use page parameter to get additional pages if totalCount > size
Set size parameter to control items per page (max: 100)
Examples:
Get all templates (first page): {"projectId": "123456"}
Get second page: {"projectId": "123456", "page": 1, "size": 20}
Get with custom page size: {"projectId": "123456", "page": 0, "size": 50}
Returns a paginated response with totalCount and an array of templates containing id and templateName.
Templates help users quickly create tasks with predefined structure and content, useful for common task types like bug reports, feature requests, or documentation tasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID to get templates from | |
| page | No | Page number for pagination (default: 0) | |
| size | No | Number of items per page (default: 20, max: 100) |