Skip to main content
Glama

tickerbot_delete_custom_signal

Delete one of your custom signals. Refused by default if another of your signals references it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
forceNoWhen `true`, skip the reference check and delete. References will break on next recompile.
signalYesCustom signal slug (the signal name). A built-in name answers 404 — built-ins are read-only.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changed
    • addedInput schema / properties / force / default
      Added value: +false
    • changedInput schema / properties / force / description
      Previous value: -"When true, skip the reference check and delete anyway. Default false."New value: +"When `true`, skip the reference check and delete. References will break on next recompile."
    • removedInput schema / properties / name
      Removed value: -{
      -  "description": "Custom signal slug.",
      -  "type": "string"
      -}
    • addedInput schema / properties / signal
      Added value: +{
      +  "description": "Custom signal slug (the signal name). A built-in name answers 404 — built-ins are read-only.",
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "name"
      -]New value: +[
      +  "signal"
      +]
  2. Added

TDQS

A4.2/5.0
Behavior4/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 disclosure burden. It explicitly discloses that deletion is refused by default when another signal references it, and that using force will break those references on recompile. This is valuable destructive-behavior context, though it does not additionally state whether deletion is irreversible or what permissions are required.

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 operation is front-loaded, and the most important caveat about reference checks follows immediately. Every word earns its place.

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 two-parameter tool with a fully documented schema and no nested objects, the description is nearly complete. It explains the default behavior and the force escape hatch. The only minor gaps are the absence of any mention of output/response shape and explicit irreversibility, but those are not critical for invoking the tool correctly.

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

Parameters4/5

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

The schema already documents both parameters with 100% coverage, so the baseline is 3. The description adds semantic value by explaining the default refusal consequence, which gives real meaning to the force parameter and the reference-check behavior. The signal parameter details are already well covered in the schema.

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 uses a specific verb and resource: 'Delete one of your custom signals.' This clearly separates it from sibling tools like delete_universe and delete_webhook, and the operation is obviously distinct from create/update custom signal tools. The first sentence leaves no ambiguity about what the tool does.

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 description implies when to use the tool: when a custom signal needs to be removed. However, it does not explicitly name alternatives or state when not to use it, such as when the signal is a built-in or when the user should choose update instead. The usage guidance is adequate but left mostly implicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.