Skip to main content
Glama
midnight480

saga-event-space-mcp-server

by midnight480

delete_token

Delete an API token by its unique ID to revoke access immediately. Requires the token ID for removal.

Instructions

Delete an API token. API token required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID of the token to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden. It mentions that an API token is required, which hints at authentication, but it does not disclose that deletion is likely irreversible, what side effects occur, or whether the token is immediately invalidated.

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 extremely short and front-loaded with the core action. Both sentences earn their place, with no unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter delete operation, this is minimally viable: the parameter is fully documented and the action is clear. However, with no annotations and no output schema, the description omits important behavioral context such as irreversibility and the result of the operation.

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 fully documents the 'id' parameter with a clear description. The tool description adds no extra semantic detail about the parameter, so it provides the baseline value but no additional value.

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 uses a specific imperative verb ('Delete') and names the exact resource ('API token'), making the action unambiguous. It is clearly distinct from sibling token operations like create_token, update_token, and get_tokens.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives, nor are any exclusions or conditions provided. The action itself implies usage, but the description does not help an agent decide between delete_token and update_token.

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