Skip to main content
Glama
rsp2k
by rsp2k

db_delete_logical_database

Delete a logical database from a Vultr managed database by providing the database ID or label and the logical database name.

Instructions

Delete a logical database.

Args: database_id: The database ID or label db_name: The logical database name to delete

Returns: Status message confirming deletion

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
db_nameYes
database_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.1/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of disclosing behavioral consequences. It only says 'Delete' and 'Returns: Status message confirming deletion'; it does not state whether the deletion is permanent, whether it destroys associated data, requires specific permissions, or affects the containing database.

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 compact and well organized, with a one-line purpose, an Args list, and a Returns clause. Every sentence earns its place and no filler or redundant detail is present.

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 two-parameter delete operation, the description covers the basic action, the required parameters, and the return value. However, it lacks important context such as the parent/child relationship between `database_id` and `db_name`, and it does not disclose irreversible data-loss implications, making it minimally viable but incomplete.

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?

With 0% schema description coverage, the Args section adds helpful meaning: `database_id` accepts 'ID or label' and `db_name` is identified as the logical database name to delete. However, it does not clarify the relationship between the two parameters or what kind of database ID `database_id` refers to, leaving a meaningful gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('Delete a logical database') and names the specific resource, so an agent knows what operation is being exposed. The term 'logical database' gives some distinction from the sibling `db_delete`, but the description does not explicitly contrast the two, leaving a minor ambiguity.

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 gives no guidance on when to use this tool versus alternatives such as `db_delete` or `db_create_logical_database`. There are no exclusions, prerequisites, or conditions stated, so an agent must infer usage solely from the tool name and the generic delete sentence.

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