Skip to main content
Glama

Archive multiple notifications

archive_notifications
Destructive

Archive several notifications by ID in one call. They leave the inbox but are not erased.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesNotification IDs to archive (from list_notifications)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoConfirmation, and how many notifications left the inbox.
successYesTrue when the call succeeded. A failure comes back as an error result instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "data": {
      +      "description": "Confirmation, and how many notifications left the inbox."
      +    },
      +    "success": {
      +      "description": "True when the call succeeded. A failure comes back as an error result instead.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "success"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Despite the destructiveHint=true annotation, the description adds valuable context by stating 'They leave the inbox but are not erased', clarifying that the operation is not permanent deletion. This goes beyond the annotation's simple destructiveness flag and gives the agent a clearer model of the tool's side effects.

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 sentences with no filler. The core action is front-loaded ('Archive several notifications by ID in one call') and the clarifying behavior is added without redundancy. 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 simple one-parameter batch operation with an output schema present and annotations covering safety, the description is nearly complete. It explains the batch nature, the input method, and the non-destructive outcome. Minor gaps like partial failures or id validation are not addressed, but they are not essential given the tool's simplicity.

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 schema already provides 100% coverage with a description for the 'ids' parameter ('Notification IDs to archive (from list_notifications)'). The description adds 'by ID' but no new constraints, formatting, or behavioral detail beyond the schema. Baseline 3 is appropriate since the schema carries the semantic burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (archive), resource (notifications), and method (by ID in one call). It also clarifies that the notifications leave the inbox but are not erased, which distinguishes it from deletion tools. However, it does not explicitly differentiate from the singular sibling archive_notification, though 'several' and 'in one call' imply batch usage.

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 batch use ('several notifications by ID in one call') but does not explicitly state when to choose this over alternatives like archive_notification (singular) or clear_read_notifications. No exclusions or 'when not to use' guidance is provided, leaving the selection decision somewhat to inference.

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