Skip to main content
Glama
nishant-gudipaty

mcp-db-universal

db_schema_snapshot

Retrieve a complete snapshot of all tables and columns to understand the entire database structure in one view.

Instructions

Get a full schema snapshot of all tables and their columns. Useful for understanding the entire DB structure at once.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description itself signals a read-only operation via 'Get' and 'snapshot', which is reasonable behavioral context. It does not mention potential performance cost, output size, or whether the snapshot includes indexes/views/foreign keys, so some burden remains unmet.

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 two short sentences with no filler. The core action and scope are front-loaded, and the use-case sentence earns its place by guiding selection.

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 zero-parameter introspection tool, the description is largely complete: it states what is returned and when it is useful. It could be slightly richer by clarifying what is not included (e.g., indexes, foreign keys), but the sibling tool names help fill that gap.

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?

The input schema has zero properties, so there are no parameters to document. The baseline for a zero-parameter tool is 4, and the description does not need to compensate for any missing parameter details.

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 uses a specific verb ('Get') and a clear resource ('full schema snapshot of all tables and their columns'). It clearly distinguishes itself from siblings like db_describe_table, which would describe a single table, and db_list_tables, which would only list table names.

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

Usage Guidelines4/5

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

The phrase 'Useful for understanding the entire DB structure at once' provides a clear context for when to use this tool versus more targeted schema tools. However, it does not explicitly mention alternatives or exclusion criteria, which leaves some inference to the agent.

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