Skip to main content
Glama
lobster-kit

lobsterdb

Official
by lobster-kit

Create Database

create_database

Provision a new PostgreSQL database and receive a connection string ready for immediate use.

Instructions

Provision a new PostgreSQL database. Returns a connection string ready to use immediately.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesA short, descriptive name for the database (e.g. "pokemon-tracker", "my-agent-db")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.4/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 behavioral burden. It usefully discloses the return value ('a connection string ready to use immediately'), but omits permissions required, idempotency/duplicate-name behavior, and whether provisioning is synchronous or billed.

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?

Two short sentences with zero filler; the purpose is front-loaded and the return-value note follows immediately. Nothing could be trimmed without losing information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter creation tool with no output schema, the description covers purpose and the returned artifact, which is the key thing an agent needs. It stops short of covering failure modes or naming constraints that a mutating tool would ideally mention.

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 coverage is 100% with a single, well-documented 'name' parameter, so the baseline is 3. The description adds no extra meaning about naming constraints (uniqueness, character limits) beyond the schema example.

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?

States a specific verb ('Provision') and resource ('PostgreSQL database'), which cleanly separates it from delete_database, list_databases, and get_database. It does not explicitly name or contrast with any sibling, so it falls short of the top score.

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 when-to-use guidance, no prerequisite (e.g. account/plan limits), and no mention of alternatives such as migrate for an existing database. The agent must infer usage entirely from the tool name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.