List task comments
list_taskcommentsThe comment thread of a task (stakeholder updates / discussion). Each comment carries app_url, a deep link to the drawer of the task it belongs to.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes |
list_taskcommentsThe comment thread of a task (stakeholder updates / discussion). Each comment carries app_url, a deep link to the drawer of the task it belongs to.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful context about the return format (each comment has app_url, a deep link), but does not disclose other behaviors like ordering or potential pagination. This goes slightly beyond annotations without being rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the core purpose, and the second sentence adds a relevant detail about the return format. Every word earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only one parameter and no output schema, the description is reasonably complete for a simple read tool, but it omits some useful context such as whether the response is a list, if results are ordered, and how it differs from retrieve_taskcomments. The mention of app_url gives partial return-value information, but not a full picture.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description needs to compensate for the under-documented task_id parameter. It mentions 'of a task' but does not explain how task_id is used or what values are valid. The inherent meaning of 'task_id' in the schema is minimal, so the description adds little over the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool's purpose as returning 'the comment thread of a task', which identifies the resource (task comments) and implies a listing operation. It distinguishes from sibling tools like list_ticketcomments and list_taskattachments by specifying 'task' and 'comment thread', though it does not explicitly say 'list all comments'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as retrieve_taskcomments (likely fetching a single comment). The description implies usage via 'of a task' but offers no exclusions or explicit context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools are clearly scoped to a specific resource and action, but a few near-overlapping pairs (e.g., list_attachments vs list_taskattachments, create_tasktags vs add_tag_tasks) could cause misselection without close reading. Descriptions are detailed enough to resolve most ambiguity.
The dominant verb_noun CRUD pattern (create_, list_, retrieve_, update_, partial_update_, destroy_) is consistent and predictable. However, non-standard pluralizations (companys, resumeentrys, taskdependencys) and a handful of irregular names (task_assign_user, move_relate_to_tasks) introduce minor inconsistencies.
With 83 tools, this server is far beyond a well-scoped MCP surface, even for a feature-complete project management suite. The sheer volume will overwhelm agents and make selection inefficient, clearly falling into the extreme-mismatch range.
The toolset provides thorough lifecycle coverage across companies, projects, tasks, sprints, attachments, comments, dependencies, tags, reminders, resume entries, tickets, and users. Missing operations like company deletion or task-attachment creation appear intentional and are worked around via existing tools.