Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_update_project

Modify project details via partial updates; timeline changes trigger automatic sprint recalculation.

Instructions

Update a project's fields (partial update — only send what changes). Changing timeline recalculates sprints automatically.

Args: project_id: The project UUID. name: New project name. manager_id: UUID of new project manager. description: New description. start_date: New start date 'YYYY-MM-DD'. end_date: New end date 'YYYY-MM-DD'. sprint_duration_weeks: New sprint duration in weeks. color: New hex color. tags: New tag list (replaces existing).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
tagsNo
colorNo
end_dateNo
manager_idNo
project_idYes
start_dateNo
descriptionNo
sprint_duration_weeksNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It discloses two important behaviors: partial update semantics (only sent fields change) and the automatic sprint recalculation when timeline is modified. This goes beyond a simple 'update' and informs the agent of side effects, though it doesn't cover potential validation or permission requirements.

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 efficient: a concise opening (two sentences) that front-loads the critical behavioral notes, followed by a compact, clearly formatted Args list. No filler or repetition – every sentence earns its place.

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

Completeness5/5

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

Given the tool's complexity (9 parameters, no annotations), the description is complete. It explains the partial-update semantics, the sprint recalculation side effect, and provides per-parameter meaning and format. The output schema exists, so return-value details are unnecessary. An agent has everything needed to call this correctly.

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

Parameters5/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 lists all 9 parameters with meaningful descriptions: 'project_id: The project UUID', 'start_date: New start date 'YYYY-MM-DD'', and 'tags: New tag list (replaces existing)'. This adds essential semantics (formats, replacement behavior) not present in the schema, fully covering every parameter.

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 a project's fields' with the qualifier 'partial update — only send what changes', which precisely defines the operation and distinguishes it from creation/deletion siblings like wetrack_create_project and wetrack_delete_project. The verb-resource pairing is explicit.

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

Usage Guidelines4/5

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

Provides concrete usage guidance: instructs to send only changed fields and notes that timeline changes automatically recalculate sprints. While it doesn't explicitly list when not to use or name alternatives, the partial-update instruction is a strong, actionable guideline for correct invocation.

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

Deploy Server

Other Tools