Skip to main content
Glama
lobster-kit

lobsterdb

Official
by lobster-kit

Get Database

get_database

Fetch details for a specific PostgreSQL database, including its connection string, using the database ID.

Instructions

Get details for a specific database including its connection string.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
databaseIdYesThe database ID (e.g. db_...)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.7/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 burden. It does disclose that the result includes a connection string, which is a useful behavioral trait (sensitive data exposure) and implies a read operation. However, it says nothing about authentication requirements, error behavior, or whether the connection string is always returned.

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 a single, front-loaded sentence with no filler. Every word contributes to the purpose and the key return detail.

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 single-parameter read tool with full schema coverage, the description covers the essential return value (connection string) despite having no output schema. However, it omits usage alternatives and behavioral details such as auth or error handling, leaving it adequate but not complete.

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 description coverage is 100%, so the single databaseId parameter is already fully documented in the schema. The description adds no syntax, format, or example details beyond what the schema provides, making the baseline score of 3 appropriate.

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 specific verb ('Get') and resource ('database'), and adds a distinguishing detail ('including its connection string'). An agent can easily separate this from list_databases, create_database, delete_database, and other siblings without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'for a specific database' implies the tool is used when a single databaseId is known, but there is no explicit when-to-use, when-not-to-use, or alternative routing (e.g., list_databases vs get_database). Usage is implied rather than stated.

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