Skip to main content
Glama

Delete notification channel

delete_notification_channel
Destructive

Remove a configured Slack or Discord notification channel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channelYesWhich channel to remove

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoConfirmation that the channel was removed and stops receiving notifications.
successYesTrue when the call succeeded. A failure comes back as an error result instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the safety profile is covered. The description adds no extra context like irreversibility or effects on the Slack/Discord workspace, but does not contradict the annotations either. Given the annotation coverage, this is adequate.

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 the verb and object front-loaded. No fluff, no repetition. It conveys the complete action in minimal words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple: one parameter, an output schema exists, and annotations cover the destructive nature. The description, schema, and annotations together give an agent everything needed to invoke it correctly. No missing information like prerequisites or side effects is necessary for this basic delete operation.

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 coverage is 100% with the 'channel' parameter fully described by an enum (slack/discord) and a clear description. The tool description simply names the same platforms, adding no new meaning beyond the schema. Baseline 3 applies.

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 ('Remove') and resource ('notification channel') and narrows it with 'Slack or Discord' and 'configured'. It clearly differentiates from siblings like set_notification_channel (add/update) and list_notification_channels, and from archive_* tools, by indicating this is a permanent removal.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The action is unambiguous: use this to delete an existing Slack or Discord channel. It does not explicitly name an alternative for setting channels, but the context implies that set_notification_channel is for adding/changing. This is clear context without exclusions, though a mention of not using it for listing or setting would be stronger.

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.

Resources