Skip to main content
Glama

Update project task

tasks.update
DestructiveIdempotent

Update, complete, cancel, assign, or unassign one private general task in the selected SparkLaunch project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
due_atNo
statusNo
task_idYes
priorityNo
unassignNo
project_idYes
descriptionNo
clear_due_atNo
assignee_emailNo
idempotency_keyNo
expected_versionYes
clear_descriptionNo
confirmation_tokenNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false, and idempotentHint=true, so the safety profile is covered. The description adds useful context by listing the specific mutating operations and scoping to private general tasks, but it does not explain behavioral details such as the expected_version concurrency check, confirmation_token requirements, or the effect of cancellation. This is acceptable given annotation coverage but not rich.

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 entire description is a single front-loaded sentence with no filler. Every word contributes either the operation scope or the precise resource context. It is concise without sacrificing the most important differentiators.

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?

Despite having 14 parameters and no schema descriptions, the description provides only one terse sentence. It omits essential context around optimistic locking (expected_version), confirmation tokens, idempotency, and clear-field flags. The output schema and annotations help, but an agent is likely to misuse the more nuanced parameters.

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 0%, so the description must compensate. It only loosely suggests parameter behavior through words like 'complete,' 'cancel,' 'assign,' and 'unassign,' which map to status and assignment fields. It offers no explanation for critical parameters such as expected_version, confirmation_token, idempotency_key, clear_due_at, and clear_description, leaving an agent without enough information to use them correctly.

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 lists a precise set of operations—update, complete, cancel, assign, unassign—tied to a specific resource ('one private general task in the selected SparkLaunch project'). This clearly distinguishes it from sibling tools like tasks.create, tasks.delete, and tasks.list.

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 intended use is implied: it is the tool for modifying an existing task's fields, status, or assignment. However, it does not explicitly contrast itself with tasks.delete (for removal) or tasks.create (for creation), nor does it state when not to use it. The guidance is functional but not explicit.

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.

TDQS

B3.1/5.0
Disambiguation3/5

Domain prefixes (crm., cap_table., landing.) clearly separate broad modules, and most tools target a specific resource and action. However, within modules there are boundary overlaps—crm.add_contact_note vs crm.log_activity and cap_table.dilution_preview vs cap_table.simulate_raise—where descriptions must be read carefully to avoid a wrong pick.

Naming Consistency3/5

The dominant pattern is module.verb_noun (e.g., crm.create_lead, cap_table.update_stakeholder), which is clear and readable. But a subset of top-level tools uses object_verb with flat underscores (e.g., shortlink_create, qr_generate, campaign_archive) and one outlier (campaign_stats) breaks the verb pattern, so conventions are mixed.

Tool Count1/5

86 tools is an extreme surface for any single MCP server, well past the 50+ threshold that makes coherent selection impractical. Even though the features span several business domains, this would be far more usable split into focused servers per module.

Completeness4/5

The covered domains are broadly complete: cap table, CRM, incorporation, landing, projects, sparkroom, tasks, and validation all have read/write workflows with few dead ends. Minor gaps remain (no campaign listing/update, no branding palette delete/update, no contact deletion) but none of them blocks the main product workflows.

Resources