Skip to main content
Glama

Look a row up by an exact key

dataset_row

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

C2.7/5.0
Behavior2/5

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

With no annotations, the description must disclose behavior. It mentions case-insensitive matching, which is helpful, but it does not disclose whether the tool returns a single row or multiple rows (the title says 'a row' while the description says 'rows'), nor does it mention read-only behavior, error handling, or what happens when no match is found. Significant behavioral gaps remain.

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, concise sentence that front-loads the core functionality. It is efficient and readable, though it sacrifices depth for brevity. No redundant phrasing or filler exists.

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

Completeness2/5

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

For a simple two-parameter tool, the description is incomplete. It does not clarify the number of rows returned (singular vs. plural ambiguity), the output format, or how it handles missing values or non-existent columns. Given the sibling tools (especially dataset_search), the lack of differentiation and absence of return semantics make it insufficient for confident tool selection and invocation.

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

Parameters2/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 only says 'column equals a value', which mirrors the parameter names without explaining how to specify column names, whether values need escaping, or any format expectations. The description adds minimal semantic value beyond the schema's property names.

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 states the tool returns rows of the dataset where a column matches a value exactly, and the title adds 'exact key' to convey the lookup nature. It is clear about the resource (dataset rows) and the condition, but it does not explicitly contrast with the sibling dataset_search, which likely offers fuzzy or more complex search. Still, the core 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?

There is no guidance on when to use this tool versus alternatives like dataset_search or dataset_top. The description only states what it does, leaving the agent to infer that it is for exact key lookups. No exclusion criteria or recommended use cases are provided.

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 maps to a distinct query mode—schema, provenance, exact match, substring search, ordered multi-value comparison, numeric stats, and top/bottom ranking—so an agent can generally choose based on question type. The only mild overlap is between dataset_row and dataset_compare for single-value lookups, but the wording clarifies exact equality versus ordered multi-value matching.

Naming Consistency5/5

All seven tools share the dataset_ prefix and consistent snake_case, making the family instantly recognizable. The suffix varies between noun-like and verb-like forms, but the pattern remains predictable and readable across the whole set.

Tool Count5/5

Seven tools is a well-scoped size for a single-dataset query server. Each tool covers a necessary operation without redundancy, and none feel superfluous or missing.

Completeness5/5

The toolset covers the full range of common data exploration needs for the Orgplanly dataset: schema discovery, provenance attribution, exact lookups, substring search, comparisons, numeric summaries, and ranked extremes. For a read-only dataset server, there are no obvious dead ends or significant gaps.

Resources