Skip to main content
Glama
ErPepinoMarino

typescript-mcp-sqlite-mini-lab

db.describe_table

Retrieve the schema for a specified table in a SQLite database.

Instructions

Describe the schema of a specific table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tableNameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are present, and the description uses the verb 'describe,' which reasonably implies a read-only operation. However, it does not disclose potential side effects, error conditions, or whether the table must exist, leaving some behavioral aspects unstated.

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, clear sentence with no redundant words or extraneous details, making it highly concise and easy to parse.

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 describe operation, the description is adequate but minimal. It does not specify the output format, what fields the schema includes, or how errors like missing tables are handled, which could leave an agent uncertain in edge cases.

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?

The parameter 'tableName' is self-explanatory by name and constrained to a non-empty string, but the description adds no additional meaning about expected format, case sensitivity, or identifier rules beyond the basic schema.

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?

The description clearly states the action ('describe') and the resource ('schema of a specific table'), making the primary purpose obvious. It does not explicitly distinguish itself from the sibling tool db.list_tables, but the focus on a specific table rather than all tables provides implicit contrast.

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 description implies usage when a schema for one specific table is needed, but it does not explicitly state when to prefer this tool over db.list_tables or provide any contextual guidance or prerequisites.

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

Install Server

Other Tools