Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Reviewvo 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.1/5.0
Behavior2/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 reveals case-insensitivity and exact matching, but omits crucial behaviors such as whether the lookup is read-only, what happens if no rows match, whether multiple rows are returned, ordering, pagination, or error handling. The description is minimal and insufficient.

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 is direct and efficient. It states the core behavior without any redundant words. The structure is appropriately front-loaded with the primary action.

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 2-parameter lookup tool, the description conveys the core functionality but misses usage differentiation and return behavior. It does not mention whether the result is a single row or multiple, nor does it address error scenarios. Given the absence of an output schema and annotations, the description should have provided more context to make the tool fully usable.

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?

The description clarifies that 'column' is the field to match and 'value' is the target value, which adds meaning beyond the bare schema types. However, it does not specify allowed column names, value formats, or any constraints. Given the 0% schema coverage, the description partially compensates but not fully.

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 clearly states the tool returns rows where a column equals a value exactly, with a specific verb ('look up') and resource ('rows of the Reviewvo dataset'). It does not explicitly contrast with the sibling dataset_search, which might perform fuzzy or broader matching, so it lacks explicit differentiation but the purpose is unambiguous.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool instead of alternatives like dataset_search. The description does not mention exclusions, prerequisites, or scenarios where this exact-match lookup is preferred over other sibling tools.

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 targets a distinct operation: schema, provenance, exact lookup, substring search, multi-value comparison, aggregate stats, and ranking. Minor overlap exists between dataset_row and dataset_compare (both match column values) and between dataset_columns and dataset_provenance (both expose provenance details), but the descriptions make the intended use clear.

Naming Consistency4/5

All tools share the dataset_ prefix and use lowercase snake_case, giving a clear family identity. The suffixes mix nouns (columns, provenance, row, stats, top) with verbs (compare, search), which is a minor inconsistency, but the overall pattern is predictable.

Tool Count5/5

Seven tools is well-scoped for a single-dataset querying server. Each tool has a distinct role and none feels redundant or unnecessary for the core task of exploring and analyzing the Reviewvo dataset.

Completeness4/5

The surface covers schema discovery, provenance, exact/string lookup, multi-value comparison, numeric summaries, and ranking, which covers the main ways an agent would explore a dataset. Minor gaps include no pagination for large result sets and no multi-column filter, but these are workable given the available tools.

Resources