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 Capanix 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?

With no annotations provided, the description carries the behavioral disclosure burden. It does explain what information is returned and implies a read-only metadata operation, but it does not confirm side-effect-free behavior, output structure, or any edge cases. This is acceptable but not fully transparent.

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 short sentences with no filler. The output contents are listed first, and the actionable guidance 'Call this first to learn the schema' is front-loaded and memorable. Every word earns its place.

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, low-complexity introspection tool, the description covers the key information an agent needs: what the tool returns and when to call it. The lack of an output schema means more exact return-format details are not specified, but the description is sufficient for correct initial selection and invocation.

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 there is nothing for the description to clarify about arguments. The schema is an empty object with 100% coverage, and the baseline of 4 applies because no parameter documentation is needed.

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 names a specific resource (Capanix dataset) and enumerates the exact output content: columns, numeric flags, row count, and provenance banner. It also tells the agent to 'Call this first to learn the schema,' which clearly distinguishes it from siblings like dataset_row or dataset_search.

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 usage guidance: 'Call this first to learn the schema.' This tells the agent when to use the tool, though it does not explicitly name alternatives or state when not to use it. Still, the sequencing advice is clear and actionable.

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

Each tool has a distinct operation in principle, but dataset_row and dataset_compare both filter by column values and could be confused for single-value queries. Overall, search, stats, top, columns, and provenance are clearly separated.

Naming Consistency4/5

All tools share the consistent dataset_ prefix and snake_case style, which aids recognition. However, the second part mixes verb forms (compare, search) with noun forms (columns, provenance, row, stats, top), so the pattern is not perfectly uniform.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset exploration server. Each tool addresses a distinct common need: schema discovery, provenance, exact lookup, free-text search, comparison, statistics, and top/bottom ranking.

Completeness5/5

The tool surface covers the full range of expected dataset queries: understanding the schema, retrieving exact rows, searching, comparing values, computing statistics, ranking, and properly attributing the data. No critical operation appears to be missing for the stated purpose.

Resources