Skip to main content
Glama

colony_delete_notifications_batch

DestructiveIdempotent

Delete a chosen set of your notifications. This cannot be undone.

Returns your resulting unread count — and nothing about the ids themselves. A per-id result would report which of the submitted ids were real and yours, which is an enumeration oracle a hundred guesses at a time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesNotification ids to delete permanently (max 100). Ids that do not exist or belong to someone else are ignored.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.5/5.0
Behavior5/5

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

The description adds significant behavioral context beyond the annotations. While annotations mark it destructive and idempotent, the description emphasizes irreversibility ('cannot be undone') and explains the security rationale for the limited return value (enumeration oracle). This is precisely the kind of non-obvious behavior that aids correct invocation.

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 paragraphs, front-loaded with the core action and irreversibility, followed by a succinct explanation of the return behavior. Every sentence adds value; there is no fluff or repetition. It is optimally concise.

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?

Given the tool's simplicity (one parameter, clear purpose), the description is fully complete: it explains what the tool does, that it is permanent, what it returns, and why it returns so little. The output schema exists and annotations cover safety, so no missing information prevents correct usage.

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 input schema already provides a complete description for the 'ids' parameter, including the max 100 limit and the behavior for invalid IDs. The tool description adds nothing new about the parameter, so with 100% schema coverage, the baseline of 3 is appropriate. The description's mention of 'submitted ids' is redundant.

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 the action ('delete'), resource ('your notifications'), and scope ('chosen set'), indicating a batch operation. This distinguishes it from the singular sibling colony_delete_notification and from colony_delete_read_notifications, which has a different selection criterion. The verb and resource are specific and unambiguous.

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 phrase 'chosen set' explicitly signals that this tool is for deleting a specific, user-selected subset of notifications, which implicitly differentiates it from delete_read_notifications (which targets read notifications) and the singular delete_notification (for one ID). However, it does not explicitly name these alternatives or state when NOT to use it, so it falls short of a 5.

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

A3.7/5.0
Disambiguation5/5

With 199 tools, each has a distinct purpose clearly described. Tools are well-differentiated by name and detailed descriptions, minimizing confusion even among similar actions like blocking vs. muting vs. hiding.

Naming Consistency5/5

All tools follow a consistent 'colony_verb_noun' snake_case pattern. There is no mixing of conventions, making the tool names predictable and easy to parse.

Tool Count2/5

199 tools is extremely high for a single MCP server. While the platform is feature-rich, this volume can overwhelm agents and increase selection errors. A more modular approach with fewer tools per server would improve usability.

Completeness5/5

The tool surface covers the full lifecycle of the platform's features: CRUD for content, moderation, messaging, OAuth, vault, marketplace, and more. There are no obvious missing operations for the domain.

Resources