Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

delete_summary

Permanently removes a project summary using its UUID. Use this to eliminate outdated or incorrect summaries from your project tracker.

Instructions

Delete a summary

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
summary_idYesUUID of the summary to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.5/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. 'Delete' implies a destructive mutation, but the description says nothing about permanence, reversibility, required permissions, or cascading effects on related objects. This is a significant gap for a destructive operation.

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

Conciseness3/5

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

The description is a single short sentence with no wasted words, but brevity here reflects under-specification rather than efficient communication. It is neither bloated nor adequately informative.

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?

For a destructive, unannotated tool with no output schema, the description should at minimum note irreversibility, error behavior for a missing UUID, or permission requirements. It covers none of these, leaving the agent with only the name and schema to work from.

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 the single parameter 'summary_id' is fully documented in the schema as the UUID of the summary to delete. The description adds nothing beyond this, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a verb and resource ('Delete a summary'), so the basic action is unambiguous. However, it essentially restates the tool name and gives no differentiation from the many other delete_* siblings (delete_context, delete_issue, delete_project, etc.). It is minimally viable rather than clarifying.

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 on when to use this tool versus alternatives, no prerequisites, and no warning about consequences. The agent must infer that this is the way to remove a summary from the sibilng set, with no explicit routing help.

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