Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Weekrota 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.2/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 adds the key detail of case-insensitivity and exactness, which are useful. However, it does not disclose what happens when no match is found, when multiple rows match, or if the column is invalid, nor does it state the return format. These are gaps given the lack of annotations.

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, focused sentence with no redundant wording. It front-loads the core behavior (exact match) and adds the case-insensitivity nuance. It is appropriately sized for a simple tool, though it could briefly mention alternatives without becoming verbose.

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?

Given the tool's simplicity (2 params, no output schema) and the existence of sibling tools like dataset_search, the description provides adequate core information but lacks explicit differentiation. It does not guide the agent on when to pick this tool over dataset_search, and it omits potential edge-case behaviors, leaving some context incomplete.

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 coverage is 0%, and the description does not explicitly describe the 'column' and 'value' parameters beyond implying them in the phrase 'where a column equals a value'. It adds no specifics about allowed values, formats, or the relationship between parameters, failing to compensate for the absent schema documentation.

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's purpose: looking up rows where a column equals a value exactly. It specifies the resource (Weekrota dataset) and the operation (exact match, case-insensitive). It distinguishes from likely fuzzy search tools by emphasizing 'exactly', though it doesn't name siblings explicitly.

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 implies when to use this tool (when an exact, case-insensitive match is needed) but provides no explicit guidance on when not to use it or which sibling tool to choose instead. It does not mention dataset_search or other alternatives, leaving the decision to the agent's inference.

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 different aspect of the dataset: schema, provenance, exact lookup, substring search, multi-value comparison, aggregation, and ordering. dataset_compare and dataset_row are somewhat similar since both filter on column values, but the descriptions clarify that compare handles multiple values while row handles a single exact match.

Naming Consistency5/5

All tools follow the same dataset_ prefix convention with a lowercase noun or verb suffix: columns, compare, provenance, row, search, stats, top. The naming is uniform and predictable, making it easy to infer the purpose of each tool.

Tool Count5/5

Seven tools is a well-scoped set for dataset exploration and querying. Each tool covers a distinct operation type, and none are redundant or unnecessary.

Completeness4/5

The set covers schema discovery, provenance, exact and fuzzy lookup, multi-value comparison, descriptive statistics, and top/bottom ordering. A minor gap is the lack of a tool to list distinct values or facets, but the core needs for answering questions about this dataset are well covered.

Resources