Skip to main content
Glama

tascan_update_subtask

Idempotent

Update a subtask (title, description, response_type, response_config, requires_photo, sort_order).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
sort_orderNo
subtask_idYesSubtask ID
descriptionNo
response_typeNo"link" = the worker submits a URL. "url" = the worker visits a preset URL and confirms. "file" = the worker uploads a file.
requires_photoNo
response_configNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / response_type / description
      Added value: +"\"link\" = the worker submits a URL. \"url\" = the worker visits a preset URL and confirms. \"file\" = the worker uploads a file."
    • changedInput schema / properties / response_type / enum
      Previous value: -[
      -  "checkbox",
      -  "number",
      -  "text",
      -  "choice"
      -]New value: +[
      +  "checkbox",
      +  "number",
      +  "text",
      +  "choice",
      +  "link",
      +  "url",
      +  "file"
      +]
  2. Added

TDQS

C2.8/5.0
Behavior2/5

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

Annotations indicate readOnly=false, destructive=false, and idempotent=true, and the description does not contradict them. However, the description adds no behavioral context beyond the field list; in particular, it does not state whether omitted optional fields are preserved, how updates affect the parent task, or what response_config validation is applied.

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 sentence with the verb and resource front-loaded. It contains no filler and efficiently lists the updatable fields.

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

Completeness2/5

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

With 7 parameters, a nested response_config object, low schema coverage, and no output schema, a one-sentence field list is not sufficient. Missing usage semantics, response_config details, and update behavior on omitted fields leave an agent under-equipped to call the tool correctly.

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

Parameters2/5

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

Schema description coverage is only 29%, with only subtask_id and response_type documented. The tool description lists parameter names but adds no meaning for response_config, sort_order, title, description, or requires_photo, and does not explain the response_config object structure or constraints.

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

Purpose4/5

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

The description states a specific operation ('Update a subtask') and enumerates the exact updatable fields, so it is clear what this tool does. It does not explicitly contrast with sibling tools such as tascan_update_task or tascan_complete_subtask, so it stops short of full differentiation.

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

Usage Guidelines2/5

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

No guidance is given about when to choose this over tascan_update_task, tascan_complete_subtask, or tascan_delete_subtask, and no prerequisites such as an existing subtask or allowed status are mentioned. The usage is only implied by the verb and resource.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.