Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_delete_sprint

Delete a sprint and return all linked tickets to the backlog to prevent losing work.

Instructions

Delete a sprint and unassign all linked tickets back to backlog.

Args: sprint_id: The sprint UUID to delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sprint_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses a meaningful side effect ('unassign all linked tickets back to backlog'), but it does not state whether deletion is irreversible, whether certain sprint states block deletion, or what permissions are required. This is adequate but incomplete for a destructive tool.

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 compact and front-loaded. The first sentence states the core behavior and side effect, and the second sentence documents the parameter. Every word contributes.

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?

For a one-parameter delete operation with an output schema, the description is mostly complete. It explains the main side effect on linked tickets, which is the main non-obvious context. It could mention failure conditions or whether the sprint must exist, but the low complexity keeps the gaps minor.

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 description coverage is 0%, but the description compensates by identifying sprint_id as a 'sprint UUID' and explaining its purpose ('to delete'). This adds format and role beyond the schema's bare 'Sprint Id' title. For a single-parameter tool, this is sufficient.

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 uses a specific verb and resource ('Delete a sprint') and adds a key behavioral distinction: it unassigns all linked tickets back to the backlog. This clearly separates it from get_sprint, list_sprints, create_sprint, and update_sprint.

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?

There is no guidance about when to use this tool instead of alternatives such as update_sprint or list_sprints. The description implies deletion usage, but it does not state exclusions, prerequisites, or conditions under which deletion should not be attempted.

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