Skip to main content
Glama
Achlesha

sendhustle-mcp

delete_api_key

Revoke an API key by deleting it, immediately invalidating its access. Use to remove compromised, unused, or unwanted credentials.

Instructions

Delete (revoke) an API key (DELETE /api-keys/:id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe API key id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full behavioral burden. It states the action ('delete/revoke') but does not disclose irreversibility, immediate invalidation, permission requirements, or any side effects. This is a significant gap for a destructive tool.

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 a single, compact sentence with no filler. It front-loads the primary action and includes the endpoint, every word earning its place.

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 one-parameter delete tool, the description covers the core purpose and resource. However, with no output schema and no annotations, it omits expected response behavior, idempotency, and whether the key is immediately unusable. It is minimally adequate but could be more complete.

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 coverage is 100%, so the schema already documents the `id` parameter. The description adds no extra parameter-level semantics (e.g., where to find the id, format constraints), so the baseline of 3 is appropriate.

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 verb ('Delete (revoke)') and resource ('API key'), plus the HTTP endpoint, making the action unmistakable. It clearly distinguishes this tool from siblings like create_api_key and list_api_keys.

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 purpose directly implies when to use it (whenever an API key needs to be revoked). There is no explicit alternative mentioned, but the context is clear enough that an agent can infer the correct usage without ambiguity.

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

Deploy Server

Other Tools