Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
TABLEBRIDGE_DATA_DIRNoDirectory of files to expose (the sandbox boundary).
TABLEBRIDGE_MAX_ROWSNoMax rows returned per query/preview1000
TABLEBRIDGE_RECURSIVENoScan subdirectories too1

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_sourcesA

List the tables available to query (one per data file) with column counts.

Start here: each CSV/Parquet/JSON file under the data directory is exposed as a table you can SELECT from and JOIN across.

describeC

Show a table's columns and types.

previewA

Return the first n rows of a table (capped by TABLEBRIDGE_MAX_ROWS).

queryA

Run a read-only SQL query (DuckDB dialect) across the loaded tables.

Supports SELECT / WITH / DESCRIBE / SUMMARIZE and JOINs across files. Writes and raw file-access functions are rejected. Results are capped at TABLEBRIDGE_MAX_ROWS; a truncated flag indicates when more rows exist.

refreshA

Re-scan the data directory (pick up added/changed files) and report the count.

server_infoA

Report the effective configuration (data dir, row cap, supported formats).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: describe for schema, list_sources for table listing, preview for row sampling, query for SQL execution, refresh for data reload, and server_info for configuration. No overlap.

Naming Consistency4/5

Most tools use single imperative verbs (describe, preview, query, refresh) but list_sources uses verb_noun and server_info uses noun_noun. The pattern is mostly consistent but has minor deviations.

Tool Count5/5

With 6 tools, the server covers all core functionalities needed for data exploration and querying without excess or deficiency. The scope is well-matched.

Completeness4/5

The tool set provides essential operations: listing, describing, previewing, querying, refreshing, and configuration. A minor gap could be the absence of a statistical summary tool, but the core workflow is fully covered.

Maintenance

ActivityStale
ResponsivenessNo issues