Skip to main content
Glama

ipt_delete_source

Delete a data source from an IPT after ensuring its mappings are removed first. Set confirm to true to execute.

Instructions

[writes to the IPT] Delete a source (its mappings must be removed first).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceYes
confirmNoMust be true to actually perform this action
shortnameYesResource shortname

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose that the operation writes to the IPT and that mappings are a prerequisite, but it does not state that deletion is destructive, irreversible, gated by confirm, or what happens to related data. Partial disclosure only.

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?

One short sentence with a front-loaded write indicator and a meaningful precondition. Every clause earns its place; there is no repetition of schema data or filler.

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 simple three-parameter mutation, the description plus schema is arguably callable: required params are present and confirm's gate is documented in the schema. However, with no annotations and no output schema, the description omits the destructive/permanent nature and any guidance on invalid states, leaving meaningful gaps.

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 67%, and the schema already describes confirm and shortname. The description adds no parameter-specific meaning beyond identifying 'a source' as the deletion target, leaving the source parameter's semantics to be inferred from the tool name. Acceptable but not compensatory.

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 names the verb ('Delete'), the resource ('a source'), and adds the key constraint that mappings must be removed first. It is clear, though it does not explicitly distinguish itself from sibling tools like ipt_delete_mapping or ipt_delete_resource beyond the resource type.

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?

The parenthetical gives an important precondition—mappings must already be removed—which implies ordering relative to ipt_delete_mapping, but it never states when this tool should be selected over alternative deletion tools. Usage context is implied rather than explicit.

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