Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Carbikly dataset where a column equals a value exactly (case-insensitive).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes
columnYes

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?

With no annotations, the description carries the full burden of behavioral disclosure. It usefully discloses that matching is exact but case-insensitive and that results are rows, not necessarily a single row. It does not explain behavior on no match, whether the operation is read-only, or how duplicate matches are returned.

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 a single sentence with no filler. It front-loads the resource (rows of the Carbikly dataset) and packs the matching rule and case-sensitivity into a compact, scannable statement.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The core lookup behavior is covered, but there is no output schema and no annotations, so an agent must guess the returned row shape, empty-result behavior, and whether matching applies to any column or only a designated key column. This is adequate for a simple tool but not fully complete.

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?

Schema description coverage is 0%, so the description must add meaning. It maps both parameters to their roles: `column` is the dataset column to compare and `value` is the value to match, and it adds the important case-insensitive equality semantics. It does not specify valid column names or value formats, but that is reasonable for two plain string parameters.

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 title supplies a specific verb and resource ('Look a row up by an exact key'), and the description clarifies that the tool returns rows from the Carbikly dataset where a named column equals a provided value, with case-insensitive exact matching. The exact-match criterion also distinguishes it from sibling tools like dataset_search or dataset_top.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the matching condition explicit, so an agent can infer this tool is for exact value lookups rather than fuzzy search or aggregation. However, it never names alternatives like dataset_search, nor does it state when not to use this tool, leaving usage guidance implied rather than explicit.

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 addresses a distinct mode of dataset access: schema, provenance, exact match, multi-value comparison, substring search, statistics, and sorting. The only mild overlap is between dataset_row, dataset_compare, and dataset_search, but their descriptions make the filtering differences clear enough.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and use snake_case, which establishes a clear pattern. The second part is not perfectly uniform—some are nouns like columns and stats, while others are verbs like compare and search—but this is a minor inconsistency.

Tool Count5/5

Seven tools is well-scoped for a single-dataset query server. Each tool covers a meaningful interaction with the dataset without feeling redundant or overwhelming.

Completeness4/5

The tool surface covers schema discovery, provenance, row retrieval by exact value, multi-value filtering, text search, numeric summaries, and top/bottom ranking. Missing features like arbitrary group-by or pagination are notable but not severe for the apparent read-only exploration purpose.

Resources