Skip to main content
Glama
minhlecsm

rocketlane-mcp

by minhlecsm

update_task

Update an existing task by modifying only the fields you specify, such as title, description, due date, status, phase, or assignee.

Instructions

Update an existing task. Only the fields you pass are changed (partial update).

To change the phase, look up phase_id via the phases for this project (parse_tasks_from_notes returns them) — never guess. To reassign, look up assignee_user_id via fetch_project_members / get_team_members — never guess.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesRocketlane task ID to update.
task_nameNoNew task subject/title.
descriptionNoNew task description.
due_dateNoNew due date in YYYY-MM-DD format.
status_valueNoNew status (1=To do, 3=Completed, 4=Blocked).
phase_idNophaseId for this project (pair with phase_name).
phase_nameNophaseName matching phase_id.
assignee_user_idNouserId of the new assignee (pair with the email/name fields).
assignee_emailNoemailId of the assignee.
assignee_first_nameNoAssignee first name.
assignee_last_nameNoAssignee last name.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

Discloses partial update behavior. With no annotations, it covers key behavioral aspects but could mention idempotency or error handling. Output schema exists, so return values are covered.

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?

Three sentences with no filler: purpose, partial update, and critical usage guidelines. Front-loaded and efficient.

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

Completeness4/5

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

Given 11 parameters and output schema, the description addresses the main complexity (partial update and ID lookups). Schema covers the rest.

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

Parameters4/5

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

Schema coverage is 100%, baseline 3. Description adds value by explaining how to derive phase_id and assignee_user_id, compensating for the complexity of these parameters.

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 clearly states 'Update an existing task' and specifies partial update behavior. It is distinct from siblings like complete_task and delete_task.

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

Usage Guidelines5/5

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

Explicitly instructs to look up phase_id via phases from parse_tasks_from_notes and assignee_user_id via fetch_project_members/get_team_members, with a strong emphasis to 'never guess'.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/minhlecsm/rocketlane-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server