Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

get_status_update

Retrieve a specific status update by its UUID to review project progress, blockers, and recent changes.

Instructions

Get a specific status update by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
status_update_idYesUUID of the status update

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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 burden and does not deliver. It never states this is a read-only, non-mutating call, nor what happens on an unknown/malformed ID, nor any auth or rate-limit behavior.

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?

A single compact sentence with no waste, and the identifying key is front-loaded. It is efficient but too thin to be considered a model of structure.

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 one-parameter read tool this is roughly adequate, but with no output schema and no annotations the description leaves the return shape and error behavior entirely unexplained.

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% and there is a single parameter, so the schema already documents status_update_id as a UUID. The description adds only 'by ID', which is redundant with the schema.

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?

States a specific verb (get) and resource (status update) with the lookup key (by ID). It implicitly distinguishes itself from list_status_updates and search_status_updates by the 'specific/by ID' phrasing, but never names those siblings explicitly.

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

Usage Guidelines3/5

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

Usage is only implied: an agent infers this is the tool for fetching one known status update, versus the list/search siblings. There is no explicit when-to-use, when-not-to-use, or prerequisite (e.g. that a valid UUID must already be known).

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