Skip to main content
Glama

create_comment

Add a comment to any Arca task by providing its ID and comment content. HTML formatting is supported for rich replies.

Instructions

Create a comment on a task

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesComment content (HTML supported)
task_idYesThe task ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.1

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of disclosing behavioral traits. It only says 'Create a comment on a task' and does not mention side effects, authentication requirements, return values, or error behavior for this mutating operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler or redundant information. The key action and target are front-loaded, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter create operation, the description plus schema cover the inputs needed to invoke the tool. However, with no annotations and no output schema, it omits any indication of the response or side effects, leaving it short of fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the schema already documents task_id and content, including that content supports HTML. The description adds no additional meaning beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Create a comment on a task' uses a specific verb and resource, making the operation immediately clear and distinguishing it from sibling tools such as list_comments and create_task. No ambiguity remains about what resource is affected.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description only states what the tool does; it does not explicitly say when to choose this tool over alternatives such as list_comments. Usage context is implied by the verb 'Create' and the task target, but there are no exclusions or alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.