Skip to main content
Glama
emre6943

Trackfusion MCP Server

by emre6943

update_item

Update existing tracked items in Trackfusion by changing name, notes, status, or replacement date, identified by item ID.

Instructions

Update an existing tracked item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew name
notesNoNew notes
itemIdYesItem ID
statusNoNew status
replacementDateNoReplacement date (ISO), or null to clear

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Update', so an agent cannot tell whether the update is partial or full replacement, what happens to unset fields, whether status transitions have constraints, or what the return value is.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler and the verb is front-loaded. It is highly concise, though the brevity leaves behavioral details to other sources.

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?

This is a mutation tool with no annotations, no output schema, and five parameters. The description does not explain update semantics, return values, status transitions, or the role of replacementDate, leaving significant gaps for correct invocation.

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

Parameters3/5

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

Schema description coverage is 100%, so the input schema already documents all five parameters and their meanings. The description itself adds no parameter-level detail, so it meets the baseline but does not exceed it.

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 action ('Update') and a specific resource ('existing tracked item'), making the core purpose clear. It implicitly contrasts with create_item and delete_item, but doesn't explicitly differentiate it from other update tools beyond the resource name.

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?

The description gives no guidance on when to use this tool versus alternatives like create_item or delete_item. The word 'existing' implies it is not for creation, but there is no explicit context, exclusions, or named sibling alternatives.

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