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 Opexvo 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

A3.9/5.0
Behavior3/5

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

No annotations are present, so the description carries the burden of explaining behavior. It discloses what the tool returns, and "Call this first" implies a safe read-only operation, but it does not explicitly state side-effect-freeness, access requirements, or any limits.

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?

Two short sentences, front-loading the output contents and then the key usage instruction. Every clause earns its place with no redundancy.

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?

With no output schema, the description enumerates the main return elements (columns, numeric flags, row count, provenance banner), which is enough for an initial schema-discovery call. It does not describe the exact structure of those elements, but the context is simple enough that this is a minor gap.

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?

There are zero parameters, so the input schema cannot create ambiguity and the baseline is 4. The description does not need to document parameter semantics because none exist.

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 names the concrete outputs — columns, numeric flags, row count, and provenance banner — for the Opexvo dataset, and adds the directive to call it first. It does not use an explicit verb or directly contrast with siblings like dataset_provenance or dataset_stats, so it stops short of a 5.

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?

"Call this first to learn the schema" gives explicit placement in an agent's workflow. It does not name alternatives or specify when not to use it, but for a zero-parameter exploratory tool the guidance is sufficient.

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

Each tool has a distinct primary purpose: schema, provenance, exact row lookup, substring search, multi-value comparison, summary stats, and top/bottom rankings. The main ambiguity is between dataset_row and dataset_compare, since both do exact value filtering, though one is single-value and the other is multi-value/ordered.

Naming Consistency4/5

All tools share a clean dataset_ prefix and use snake_case, making the family immediately recognizable. The second part mixes noun forms (columns, provenance, row, stats) with verb-like forms (compare, search, top), so the pattern is not perfectly uniform but remains readable and predictable.

Tool Count5/5

Seven tools is a well-scoped size for a read-only dataset exploration server. Each tool covers a distinct need without redundancy or unnecessary bloat.

Completeness5/5

The tool surface covers the full read-only dataset workflow: schema discovery, row retrieval by exact match, substring search, multi-value comparison, numeric summaries, ranking, and provenance/attribution. There are no obvious missing operations for the stated purpose.

Resources