Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Nofovo 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.5/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. It usefully discloses exact, case-insensitive matching, but does not mention whether multiple rows can be returned, empty results, ordering, or any other runtime behavior.

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 compact sentence with no filler, and the title clearly front-loads the operation. Every phrase contributes to understanding the tool.

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 operation is described adequately, but there is no return-shape information and no relationship to dataset_search. Given the sibling list and no output schema, a bit more context would help.

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 coverage is 0%, but the description maps both parameters by saying a column equals a value, making their roles clear. It adds little beyond the schema, though the exact/case-insensitive semantics give some extra meaning.

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 title provides the verb 'look up' and the description names the resource (rows of the Nofovo dataset) and the exact matching condition. It clearly signals exact-key lookup, though it does not explicitly distinguish itself from 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 Guidelines3/5

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

The phrase 'equals a value exactly' implies use for exact-match lookups, and the sibling name dataset_search hints at the alternative. However, the description gives no explicit when-to-use or when-not-to-use guidance.

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

Most tools have clearly distinct purposes: schema, provenance, stats, top, search, exact-row, and compare all serve different question types. However, dataset_row and dataset_compare both filter by column values and could be confused for single-value lookups, and dataset_search adds a third overlapping retrieval path.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and use lowercase snake_case, making the set predictable. The second part mixes nouns (columns, provenance, row, stats, top) with verbs (compare, search), so the naming is mostly consistent but not a strict verb_noun pattern.

Tool Count5/5

Seven tools is well-scoped for a dataset query server. Each tool addresses a distinct common question type, and none feel redundant or unnecessary.

Completeness4/5

The set covers schema discovery, provenance, exact lookups, fuzzy search, comparisons, summary statistics, and extreme values, which handles most dataset question-answering needs. Minor gaps exist around arbitrary inequality filters or combining conditions across multiple columns, but agents can typically work around these.

Resources