Skip to main content
Glama

delete_list_item

Remove a specific item from a Slack List by supplying the list ID and item ID. Requires lists:write permission.

Instructions

Delete a single item from a Slack List. Requires lists:write scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
item_idYesItem ID to delete
list_idYesList ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It clearly identifies the operation as destructive and states the required OAuth scope (lists:write), which is useful for authorization decisions. It does not mention irreversibility or return behavior, but 'delete' makes the core behavior clear.

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?

Two short sentences with no filler. The primary action is front-loaded, and the scope requirement is appended as a separate, easily parsed sentence.

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 two-parameter delete operation, the description is largely complete: it names the resource, indicates singular scope, and provides the required permission. It could be slightly richer by noting that deletion is permanent or that the item must exist in the list, but these are not critical 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 coverage is 100%, so the parameters are already fully documented by the schema. The description adds no additional meaning beyond the literal schema properties, making baseline 3 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 action ('Delete a single item') on a specific resource ('Slack List'), which clearly distinguishes it from the sibling tool 'delete_list_items' that handles multiple items. The verb and object 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 Guidelines3/5

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

The description implies usage for exactly one item and requires lists:write scope, but it does not explicitly direct the agent to use delete_list_items when deleting multiple items. The distinction from the sibling tool is implied rather than stated.

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