Skip to main content
Glama

site

Dataset columns and shape

dataset_columns

The columns, which of them are numeric, the row count and the provenance banner of the Nofovo dataset. Call this first to learn the schema.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It clearly communicates this is a read-oriented schema discovery call and enumerates the returned information. It does not describe potential latency or side effects, but none are expected for a no-parameter metadata tool, and nothing in the description suggests mutation or hidden behavior.

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 sentences with no filler. It front-loads the concrete outputs in the first sentence and gives the key usage directive in the second. Every word adds value.

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, no-output-schema tool, the description provides a complete picture of what the agent will receive: columns, numeric indicators, row count, and provenance banner. It could further explain how this differs from dataset_provenance and dataset_stats, which also touch provenance and counts, but the 'call first' framing largely resolves that ambiguity.

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 tool has zero parameters, so the baseline is 4. The description does not need to explain parameter meaning because there are none to document. The schema is empty and fully covered, so there is no semantic gap for the description to fill.

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 states exactly what the tool returns: columns, numeric flags, row count, and provenance banner for the Nofovo dataset. It also frames the tool as the schema-learning entry point, which distinguishes it from siblings like dataset_row or dataset_stats. The imperative 'Call this first' makes its purpose unmistakable.

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 description gives explicit timing guidance with 'Call this first to learn the schema.' It clearly positions this as the initial discovery step before other dataset tools. It does not explicitly mention when not to use it or name alternatives, but for a zero-parameter metadata tool the context is clear.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Most tools have clearly distinct purposes: schema, provenance, stats, top, search, exact-row, and compare all serve different question types. However, dataset_row and dataset_compare both filter by column values and could be confused for single-value lookups, and dataset_search adds a third overlapping retrieval path.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and use lowercase snake_case, making the set predictable. The second part mixes nouns (columns, provenance, row, stats, top) with verbs (compare, search), so the naming is mostly consistent but not a strict verb_noun pattern.

Tool Count5/5

Seven tools is well-scoped for a dataset query server. Each tool addresses a distinct common question type, and none feel redundant or unnecessary.

Completeness4/5

The set covers schema discovery, provenance, exact lookups, fuzzy search, comparisons, summary statistics, and extreme values, which handles most dataset question-answering needs. Minor gaps exist around arbitrary inequality filters or combining conditions across multiple columns, but agents can typically work around these.

Resources