Skip to main content
Glama

reject_list_suggestion

Destructive

Reject one pending add/remove suggestion for a list. The decision is retained so noticed does not propose it again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_idNoThe list id. Pass this OR list_name.
list_nameNoThe list name, matched case-insensitively. Pass this OR list_id.
person_idYesThe person id on the pending suggestion.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether noticed completed the operation.
dataNoThe operation result when ok is true.
errorNoA human-readable error when ok is false.

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": true,
      +  "properties": {
      +    "data": {
      +      "additionalProperties": false,
      +      "description": "The operation result when ok is true.",
      +      "properties": {
      +        "list_id": {
      +          "type": "string"
      +        },
      +        "person_id": {
      +          "type": "string"
      +        },
      +        "remaining_pending": {
      +          "type": "number"
      +        }
      +      },
      +      "required": [
      +        "list_id",
      +        "person_id",
      +        "remaining_pending"
      +      ],
      +      "type": "object"
      +    },
      +    "error": {
      +      "description": "A human-readable error when ok is false.",
      +      "type": "string"
      +    },
      +    "ok": {
      +      "description": "Whether noticed completed the operation.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "ok"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

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

The description goes beyond the destructiveHint annotation by explaining that the rejection decision is retained and prevents the suggestion from being proposed again. This adds useful behavioral context about persistence and future behavior.

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 concise sentences with no filler. The core action is front-loaded and the retention behavior is stated in the second sentence without unnecessary detail.

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?

With full schema coverage, an output schema, and annotations already present, the description is complete for an agent to understand the tool's purpose and side effects. Nothing essential is missing.

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 description coverage is 100%, so the parameters are already well documented. The description adds the 'pending' qualifier but does not need to explain individual parameters further.

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 ('Reject') on a specific resource ('one pending add/remove suggestion for a list'). It distinguishes this from the sibling accept_list_suggestion by focusing on rejection and the retained decision.

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 description makes the usage context clear: use it when rejecting a pending add/remove list suggestion. It does not explicitly name alternatives or exclusions, but the context is strong enough that an agent can infer when this tool applies.

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