Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

create_status_update

Generate status updates to track project progress, document blockers, and record achievements for effective reporting and management.

Instructions

Create a status update/report to track progress, blockers, or achievements

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorizing status updates
titleYesTitle of the status update
contentYesFull content of the status update
metadataNoAdditional metadata
period_endNoEnd date of reporting period (ISO 8601 format)
status_typeNoType of status updategeneral
period_startNoStart date of reporting period (ISO 8601 format)
related_entity_idNoUUID of related project, epic, or story (optional)
related_entity_typeNoType of related entity (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does not say whether the call requires permissions, whether duplicate titles are allowed, whether an existing period can be overwritten, or what the call returns. Only the mutation intent ('create') is conveyed.

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?

A single front-loaded sentence with the core action first and no filler. Appropriately sized for its content.

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

Completeness3/5

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

For a 9-parameter creation tool with nested metadata, two enums, and no output schema, the description covers the bare minimum. The schema fully documents inputs, but the absence of annotations means the write semantics and return behavior are left entirely unaddressed.

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 coverage is 100%, so every parameter including the two enums and the nested metadata object is already documented in the schema. The description adds no format, constraint, or relationship detail beyond that baseline.

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?

Specific verb+resource: 'Create a status update/report' with a stated intent (track progress, blockers, achievements). It distinguishes itself from CRUD siblings by name, but the description never explicitly contrasts with update_status_update or create_summary, so no credit for sibling differentiation.

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?

No when-to-use guidance, no exclusions, and no routing to alternatives such as update_status_update for edits or create_summary for a different artifact type. The phrase 'to track progress, blockers, or achievements' hints at intent but is not actionable guidance.

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