Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Longtailo 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

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden and does add one useful non-obvious behavior: matching is exact but case-insensitive. It does not cover result cardinality, ordering, limits, or error behavior when no row matches, which are relevant for a lookup tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler, and it front-loads the key qualifiers: exact match and case-insensitivity. It is slightly awkward as a noun phrase rather than an actionable statement, but it is appropriately compact.

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?

For a simple two-parameter lookup, the core semantics are present. However, with no output schema and no annotations, it does not state whether the response is a single row or an array of all matches, nor what happens on zero or multiple matches. This is a minimum-viable description rather than a complete one.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/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 compensate. It explains the roles of column (the field to match on) and value (the case-insensitive exact value), but mostly at the level already implied by the parameter names; there is no detail on format, escaping, or behavior if the column does not 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 resource (rows of the Longtailo dataset) and the operation (match rows where a column equals a value exactly, case-insensitive). It lacks an explicit imperative verb like 'returns' or 'gets', but the title supplies that, and 'exactly' distinguishes it from fuzzy lookup tools.

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 'exactly' and 'case-insensitive' wording implies use when an exact key is known, but there is no explicit when-to-use guidance or mention of alternatives. In particular, dataset_search is a sibling but is never referenced, so the agent must infer the boundary between exact row lookup and search.

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 targets a distinct query mode—schema, provenance, exact match, search, comparison, stats, and top-N—so there is little real ambiguity. The main possible confusion is between dataset_row and dataset_compare, since both filter by column values, but the descriptions clarify that compare is for ordered multi-value lookups while row handles single exact-value matches.

Naming Consistency5/5

All tool names follow a consistent dataset_<noun> pattern with lowercase snake_case, making the family easy to recognize and predict. Though the names use nouns rather than verbs, the convention is uniform and clear.

Tool Count5/5

Seven tools is a well-scoped set for querying and analyzing a single dataset. Each tool covers a distinct data-access need without redundancy or unnecessary bloat.

Completeness4/5

The surface covers schema discovery, provenance, exact and fuzzy lookup, multi-value comparisons, numeric stats, and top/bottom selection, which is comprehensive for typical dataset questions. A minor gap is the lack of categorical frequency counts or a way to retrieve all rows without a filter, but agents can work around those by combining existing tools.

Resources