Skip to main content
Glama
rsp2k
by rsp2k

db_delete_connection_pool

Remove a connection pool from a Vultr database by providing the database ID or label and the pool name to delete.

Instructions

Delete a connection pool.

Args: database_id: The database ID or label pool_name: The connection pool name to delete

Returns: Status message confirming deletion

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pool_nameYes
database_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.3/5.0
Behavior3/5

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

Annotations are absent, so the description carries the burden. It states the operation is destructive ('Delete') and discloses that it returns a status message confirming deletion. It does not, however, disclose any side effects or caveats (e.g., impact on active connections), which would strengthen transparency.

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 appropriately short and front-loaded with the core purpose. The Args section is mostly a restatement of the schema, but it adds small clarifications, and there is no unnecessary filler.

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 output schema exists and the description confirms the return value, and both required parameters are adequately documented. However, for a destructive operation with no annotations, a short note on what deletion of a pool entails would make the description fully complete.

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?

With 0% schema description coverage, the description compensates by explaining that database_id is 'The database ID or label' and pool_name is 'The connection pool name to delete,' adding meaning beyond the bare string types in the input schema.

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 specific verb and resource ('Delete a connection pool'), making the action unambiguous and distinguishable from sibling delete operations like db_delete and db_delete_user. It adds only slightly to the tool name, but it clearly specifies the object of deletion.

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?

No guidance on when to use this tool versus alternatives, no prerequisites (e.g., the pool must exist), and no mention of exclusions or preconditions. The intended use is only implied by the word 'delete'.

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