Skip to main content
Glama

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
list_tablesA

List all tables in the business database.

describe_tableB

Show the columns and their types for a given table.

run_queryB

Run a read-only SQL SELECT query against the business database and return the results.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 3 tools

Disambiguation5/5

The three tools are clearly distinct: one lists tables, one describes a table's schema, and one executes queries. There is no overlap or ambiguity between these purposes.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: list_tables, describe_table, run_query. The naming convention is uniform and predictable.

Tool Count3/5

Three tools for a read-only SQL database server is reasonable but leans toward the thin end. It covers the core needs of exploration (list/describe) and execution (query), though additional tools like schema versioning or metadata for indexes could add value.

Completeness5/5

For a read-only SQL exploration server, the surface is complete: discover tables (list_tables), inspect structures (describe_table), and query data (run_query). There are no dead ends in the typical agent workflow of exploring and analyzing a database.

Maintenance

ActivitySlowing
ResponsivenessNo issues