Skip to main content
Glama
rsp2k
by rsp2k

db_create

Create a managed database on Vultr by specifying engine, version, region, plan, and optional network and engine settings.

Instructions

Create a new managed database.

Args: database_engine: Database engine (mysql, pg, valkey, kafka) database_engine_version: Engine version (MySQL: 8, PostgreSQL: 13-17, Valkey: 7, Kafka: 3.8) region: Region code (e.g., 'ewr', 'lax') plan: Plan ID (e.g., 'vultr-dbaas-hobbyist-cc-1-25-1') label: User-supplied label for the database tag: Optional tag for the database vpc_id: VPC ID to deploy in (or 'new' for new VPC) trusted_ips: List of IP addresses allowed to access (CIDR notation) mysql_sql_modes: MySQL SQL modes to enable (MySQL only) mysql_require_primary_key: Require primary key for tables (MySQL only) mysql_slow_query_log: Enable slow query logging (MySQL only) valkey_eviction_policy: Data eviction policy (Valkey only) kafka_rest_enabled: Enable Kafka REST support (Kafka only, business+ plans) kafka_schema_registry_enabled: Enable Schema Registry (Kafka only, business+ plans) kafka_connect_enabled: Enable Kafka Connect (Kafka only, business+ plans)

Returns: Created database information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
planYes
labelYes
regionYes
vpc_idNo
trusted_ipsNo
database_engineYes
mysql_sql_modesNo
kafka_rest_enabledNo
mysql_slow_query_logNo
kafka_connect_enabledNo
valkey_eviction_policyNo
database_engine_versionYes
mysql_require_primary_keyNo
kafka_schema_registry_enabledNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description must carry full behavioral disclosure. It identifies this as a creation (mutation) operation, but does not mention potential costs, irreversibility, required permissions, or whether the creation is synchronous. It does note engine-specific settings (e.g., 'business+ plans' for Kafka), but that is more parameter constraint than behavioral consequence. An agent would not know the impact of this action beyond 'it creates something.'

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 a parameter list that is necessary for 15 parameters, and each line is concise and directly informative. The main action sentence is front-loaded. While long, it is not verbose—every line adds value. The structure is similar to a docstring, which is efficient for such a parameter-heavy tool.

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?

Given the tool's complexity and the presence of an output schema, the description covers parameter syntax well. However, it lacks contextual completeness regarding when to use it, what plans are valid for which engines, region availability, or billing implications. It mentions 'business+ plans' for Kafka features, which is a start, but doesn't guide the agent on high-level decision-making or prerequisites. For a high-impact creation operation, more context would be beneficial.

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%, but the description provides extensive parameter semantics. It gives example values for each parameter (e.g., 'ewr', 'lax' for region; 'vultr-dbaas-hobbyist-cc-1-25-1' for plan), explains the meaning (e.g., trusted_ips as CIDR notation), and clearly marks engine-specific constraints (MySQL only, Valkey only, Kafka only). This fully compensates for the lack of schema descriptions and adds meaning beyond the raw types.

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 clear verb+resource: 'Create a new managed database.' It distinguishes from sibling tools like db_delete and db_create_read_replica by specifying 'new' and 'managed', leaving no ambiguity about its role. The name already signals the primary creation operation, and the description reinforces that.

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 provides no explicit guidance on when to use this tool versus alternatives such as db_create_read_replica or db_fork_database. It does not mention exclusions, prerequisites, or situational context. The parameter list hints at engine-specific options, but there is no guidance on choosing this over other creation-related tools.

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