Skip to main content
Glama
Vilgar

Rate-API MCP Server

by Vilgar

delete_rate_alert

Remove a rate alert by its ID to stop unwanted notifications. Requires a Business plan or higher.

Instructions

Delete a rate alert by its id. Requires Business plan or higher.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe alert id to delete.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It clearly identifies the destructive action and the affected resource, and even adds an auth/plan requirement. However, it does not mention whether deletion is permanent, how errors for non-existent ids are handled, or what the response looks like.

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, focused sentence that front-loads the operation and packs the plan requirement into a second clause. There is no redundancy or filler.

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 destructive tool with no nested objects or output schema, the description provides enough information to invoke it correctly: the resource, the required identifier, and the plan prerequisite. A brief note on return behavior would have made it fully complete, but it is not essential here.

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%: the schema already documents 'id' as 'The alert id to delete.' The description repeats this concept with 'by its id' and adds no meaningful new parameter semantics, so the baseline score 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 states the exact operation (Delete), the resource (rate alert), and the input key (id). It is unambiguous and clearly distinct from sibling tools like create_rate_alert and list_rate_alerts.

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 includes an eligibility prerequisite: 'Requires Business plan or higher.' While it does not explicitly discuss alternatives, there is no alternative deletion tool for rate alerts, so the usage context is clear enough.

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