Skip to main content
Glama
rsp2k
by rsp2k

collection_remove_resource_from_collection

Remove a specified Vultr resource from a service collection by providing the collection ID, resource type, and resource ID.

Instructions

Remove a resource from a service collection.

Args: collection_id: ID of the service collection resource_type: Type of resource to remove resource_id: Vultr resource ID to remove ctx: FastMCP context for resource change notifications

Returns: Success confirmation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resource_idYes
collection_idYes
resource_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does state that the operation removes a resource and returns success confirmation, and it mentions FastMCP change notifications. However, it does not disclose error behavior, idempotency, permission requirements, or clarify that the underlying resource itself is not deleted.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with a clear purpose sentence followed by an Args/Returns structure. The mention of ctx is slightly distracting because it is not present in the input schema, but overall the definition is tight and skimmable.

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?

The tool is simple and has an output schema, so return-value details are covered. Still, with no annotations and zero schema descriptions, the description omits valid resource_type values, prerequisites, and edge-case behavior, making it moderately complete but not fully self-sufficient.

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 0%, so the description must compensate. It adds one-line meanings for each parameter, with 'Vultr resource ID' giving useful domain context for resource_id. However, resource_type is only restated as 'Type of resource to remove' with no allowed values, examples, or relationship to resource_id, leaving a notable gap.

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 a specific action ('Remove a resource from a service collection') with a clear verb and resource. It also differentiates cleanly from the sibling tool collection_add_resource_to_collection by making the removal direction explicit.

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

Usage Guidelines3/5

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

The description implies the primary use case but gives no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives or conditions, such as using this tool when the resource should remain intact but simply be unassociated versus deleting the collection entirely.

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