Skip to main content
Glama
rsp2k
by rsp2k

inference_delete_serverless_inference

Delete a serverless inference subscription permanently by providing its ID or label. This action immediately terminates the subscription and cannot be undone.

Instructions

Delete a serverless inference subscription.

Warning: This action is irreversible and will immediately terminate the subscription.

Args: subscription_id: The inference subscription ID or label to delete

Returns: Confirmation of deletion

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subscription_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations present, the description carries the behavioral disclosure burden. It explicitly warns that deletion is irreversible and immediately terminates the subscription, which goes well beyond the bare verb 'delete'. It also states the return type, though output schema could cover that.

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 tightly structured into warning, args, and returns sections. Every sentence earns its place, and the irreversible warning is front-loaded before the parameter details.

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?

For a one-parameter destructive tool with an output schema, the description is complete: it names the resource, warns about consequences, defines the parameter, and states the return. Nothing an agent needs for correct invocation is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only defines subscription_id as a string with 0% description coverage. The description compensates by clarifying that the value can be either an inference subscription ID or a label, which is essential usage information.

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 and resource ('Delete a serverless inference subscription') and makes the tool's destructive lifecycle role unmistakable. It is clearly distinguishable from sibling tools like inference_get_serverless_inference, inference_update_serverless_inference, and inference_create_serverless_inference.

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?

The description states what the tool does but provides no guidance on when to choose it over alternatives such as updating or suspending a subscription. No prerequisites, exclusion conditions, or sibling comparisons are given.

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