Skip to main content
Glama

Dataset columns and shape

dataset_columns

The columns, which of them are numeric, the row count and the provenance banner of the Hardenvo 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.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It describes the returned content but does not explicitly state that the operation is read-only or side-effect-free, nor does it mention any performance implications. Since it only reports metadata, this is a minor gap; a read-only hint would have raised the score.

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?

A single sentence that packs all necessary information: what is returned (columns, numeric flags, row count, provenance banner) and when to call it. No wasted words; the usage hint is front-loaded.

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 parameterless metadata tool, the description covers the output content and usage timing. It lacks an explicit return format (e.g., JSON structure), but given the simplicity and the absence of an output schema, the agent has enough to invoke it correctly. The 'call this first' guidance fills the contextual need.

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 and the schema coverage is 100% (vacuously). With no parameters to document, the baseline is 4, and the description does not need to add parameter details. It correctly focuses on the output.

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 clearly states the tool returns the columns, their numeric status, row count, and provenance banner for the Hardenvo dataset. It names the specific resource and distinct output elements, making it easy to distinguish from siblings like dataset_provenance or dataset_stats. The instruction to call it first further clarifies its role.

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?

It explicitly says 'Call this first to learn the schema,' giving clear guidance on when to use it. It does not mention alternatives or when not to use it, but the context is sufficient for an agent to know this is the entry point for schema discovery.

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.5/5.0
Disambiguation3/5

Most tools have distinct purposes, but dataset_row and dataset_compare both filter rows by column value and can easily be confused; the difference between a single exact match and multiple ordered matches is subtle.

Naming Consistency3/5

All tools share the dataset_ prefix, but the suffixes mix nouns (columns, provenance, row) and verbs/adjectives (compare, search, stats, top), so the naming pattern is not fully consistent.

Tool Count5/5

Seven tools is a well-scoped set for a read-only dataset exploration API, covering the main query operations without unnecessary bloat.

Completeness4/5

The set covers schema, provenance, exact lookup, text search, statistics, top/bottom rows, and comparison queries. It is missing a distinct-values or group-by operation, but the core exploration needs are well covered.

Resources