Skip to main content
Glama

keep_delete_list_item

Remove um item de checklist por item_id.

Bulk support: accepts item_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
unsafeNo
accountNo
item_idYes
item_idsNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.2/5.0
Behavior1/5

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

The description says the tool removes/deletes a checklist item, which is inherently destructive. Yet the annotations state destructiveHint: false, creating a direct contradiction. No other behavioral context is provided.

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 short, front-loaded with the primary purpose, and the bulk-support note is placed as a separate useful sentence. There is no wasted wording.

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 tool with no output schema and no behavioral annotations beyond a contradictory destructiveHint, the description is minimal. It covers the core action and batch capability but omits important context like the meaning of 'unsafe'/'account', expected result, or any side effects.

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?

The description adds meaning for item_id and item_ids, noting that item_ids enables batch execution. Since the schema has 0% parameter descriptions, this helps somewhat, but the 'unsafe' and 'account' parameters remain completely unexplained.

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 clearly states a specific action—'Remove um item de checklist por item_id'—and identifies the resource as a checklist item. This distinguishes it from sibling tools like keep_delete_note or keep_update_list_item because it targets a specific checklist item by ID.

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 provides conditional usage guidance via 'Bulk support: accepts item_ids for batched execution,' indicating when to use the array form. However, it does not explicitly contrast with sibling tools or state when this tool should be avoided.

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.

TDQS

B3.2/5.0
Disambiguation4/5

The keep_* tools are clearly distinct with verb_noun patterns, and the platform tools (authenticate, connect, marketplace, etc.) serve separate functions. No two tools appear to do the same thing, though the mix of Keep and platform tools could cause an agent to briefly confuse context.

Naming Consistency3/5

The keep_* tools follow a consistent keep_verb_noun pattern, but the platform tools use simple unrelated names (authenticate, connect, marketplace) without the prefix, breaking consistency across the set.

Tool Count2/5

At 30 tools, the server exceeds the recommended range. While the Keep operations are comprehensive, the inclusion of 6 platform management tools inflates the count and makes the surface heavier than necessary for a Keep-focused server.

Completeness4/5

The Keep tools cover full lifecycle: create/read/update/delete for notes, list items, labels, and collaborators, plus archive/trash/pin and media retrieval. The platform tools add connection and marketplace capabilities. Minor gaps like bulk operations on notes are partially addressed with bulk support fields.