Skip to main content
Glama
natejonesbaby

PostGrid MCP Server

postgrid_delete_template

Delete a template by ID. Permanently removes the template from your account; this action cannot be undone.

Instructions

Delete a template. This cannot be undone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesTemplate ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/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 does add an important behavioral trait by stating 'This cannot be undone,' which signals that the operation is destructive and irreversible. However, it does not mention permissions, side effects, or what happens to resources that may reference the template.

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 two short sentences with no filler. The core purpose is front-loaded ('Delete a template'), and the irreversibility warning earns its place as essential risk information.

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 simple one-parameter delete operation with no output schema, the description plus schema cover the essential invocation details: what action to perform and which ID to use. The irreversibility warning adds key context. It could be more complete with permission or side-effect information, but the low complexity makes this mostly sufficient.

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?

The input schema already provides 100% coverage with a clear description of the 'id' parameter as 'Template ID to delete'. The tool description adds no additional semantic detail beyond the schema, so the baseline score of 3 is appropriate.

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 states a specific verb ('Delete') and a specific resource ('template'), which clearly distinguishes this tool from sibling operations like update_template, get_template, create_template, and delete_contact. The action and target are unambiguous.

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 explicit guidance is provided about when to use this tool versus alternatives such as update_template or get_template. The warning 'This cannot be undone' implies caution, but it does not state any conditions, prerequisites, or exclusions for use.

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