Skip to main content
Glama
ccervantes369

sql-explorer

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
pingA

Check that the server is alive.

list_tablesA

List the names of every table in the database.

describe_tableA

Describe the columns of one table: name, type, and whether it is required.

run_queryA

Run a read-only SELECT query and return the rows.

At most 500 rows come back; if the query matched more, "truncated" is true and you should add a LIMIT or aggregate instead. Queries running longer than 5 seconds are aborted.

Prompts

Interactive templates invoked by user choice

NameDescription
analyze_tableExplore one table properly: size, distributions, gaps and outliers.
data_quality_reportHunt for broken or suspicious data across the whole database.

Resources

Contextual data attached and managed by the client

NameDescription
schema_overviewEvery table in the database, with its columns, as one readable page.

TDQS

A4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool serves a unique purpose: health check, table enumeration, schema inspection, and query execution. No two tools overlap in functionality, making misselection nearly impossible.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (ping, list_tables, describe_table, run_query), using lowercase with underscores throughout. The naming clearly indicates the action and target.

Tool Count5/5

With only 4 tools, the server is tightly scoped for its read-only SQL exploration purpose. Each tool is essential and covers the core workflow without unnecessary bloat.

Completeness4/5

The tool set covers the full exploration lifecycle: check health, list tables, describe schema, and run queries. Minor gaps like database-level metadata or caching are not needed for the stated purpose, so it is nearly complete.

Maintenance

ActivityMaintained
ResponsivenessNo issues