Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

delete_location

Remove a location from IT Glue by providing its unique ID. Returns confirmation to verify the deletion.

Instructions

Delete a location.

Args: location_id: The location ID

Returns: JSON string with deletion confirmation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
location_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/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 states that deletion returns a JSON confirmation string and does not warn about irreversibility, permission requirements, or potential side effects on related data. For a destructive operation, this level of transparency is insufficient.

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 compact and front-loaded with the primary action, followed by a clear Args/Returns structure. It is not bloated, though the parameter line is essentially a restatement of the schema and could have been used to add richer context.

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 tool with no annotations, the description lacks essential safety and usage context. It does not mention preconditions, consequences of deletion, or how this tool relates to other location tools. The output schema may explain the return value, but it does not compensate for the missing behavioral and operational details.

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

Parameters2/5

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

The schema has 0% description coverage, so the description must compensate for the parameter's meaning. It merely repeats 'The location ID', which adds no value beyond the schema's property title. It does not explain how to obtain a location_id, what format is expected, or any constraints associated with 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 opens with 'Delete a location', a specific verb and resource, making the core operation unambiguous. It does not explicitly differentiate itself from sibling delete tools, but naming the 'location' resource is enough to separate it from tools like delete_password or delete_contact.

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 guidance is given on when to use this tool versus alternatives such as search_locations, get_location, or other delete operations. It also does not mention prerequisites, such as confirming the location exists or checking for related items, leaving the agent to infer usage from the tool name alone.

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

Deploy Server

Other Tools