Skip to main content
Glama
rsp2k
by rsp2k

db_create_connection_pool

Create a connection pool for a Vultr database by specifying name, target database, username, mode, and size. Manage database connections efficiently.

Instructions

Create a new connection pool.

Args: database_id: The database ID or label name: Connection pool name database: Target logical database name username: Database username for the pool mode: Pool mode (session, transaction, statement) size: Pool size (number of connections)

Returns: Created connection pool information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeYes
nameYes
sizeYes
databaseYes
usernameYes
database_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.6/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full burden, but it only says 'Create a new connection pool' and 'Returns: Created connection pool information.' It does not disclose side effects, required permissions, idempotency, or failure conditions, which are important for a mutation operation.

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 appropriately brief, starts with the purpose, and uses clean Args/Returns sections. Every line contributes useful information with no redundancy.

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?

With an output schema present and all parameters well described, the agent has enough to make the call. However, it lacks usage context, prerequisites (e.g., existing database and user), and any note on size limits or naming constraints, so it is only minimally complete.

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

Parameters5/5

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

Schema description coverage is 0%, yet the description documents all six parameters with clear meanings, including the allowed mode values 'session, transaction, statement.' This fully compensates for the silent schema and enables correct invocation.

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 opens with 'Create a new connection pool,' which specifies a clear verb and resource. It distinguishes itself from sibling tools like db_create and db_create_read_replica by explicitly targeting connection pools.

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?

There is no guidance on when to use this tool versus alternatives such as db_list_connection_pools, db_update_connection_pool, or db_delete_connection_pool. The description does not mention any prerequisites or conditions, so an agent is left to infer the appropriate context.

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