Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the Disclovo 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.3/5.0
Behavior3/5

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

With no annotations provided, the description must carry the burden of behavioral disclosure. It does reveal an important behavior: matching is exact but case-insensitive. It does not mention whether the operation is read-only, what happens when multiple rows match, what happens on no match, or how results are returned. This is limited but not misleading for a simple 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.

Conciseness5/5

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

The description is a single sentence with no filler or redundant phrasing. It front-loads the core behavior, states the dataset scope, and adds the key case-insensitivity detail efficiently. Every word earns its place.

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?

The tool is relatively simple with only two required string parameters and no output schema, but the description still leaves important gaps. It does not clarify the return shape, whether one or many rows are returned, or how errors like no match are handled. It is minimally adequate but not fully self-sufficient for an agent invoking it without prior context.

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?

The schema has zero description coverage, so the description must compensate for parameter documentation. It loosely maps 'column' and 'value' to the query semantics ('where a column equals a value'), which adds relational meaning. However, it does not explain accepted formats, data types, allowed inputs, or edge cases, leaving the two string parameters mostly undocumented.

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 that the tool returns rows from the Disclovo dataset where a column equals a given value exactly, including the case-insensitivity detail. This clearly indicates a lookup-by-exact-key function and distinguishes it from a general search tool like dataset_search. It lacks an explicit verb such as 'returns' or 'fetches', but the meaning 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 Guidelines3/5

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

The phrase 'equals a value exactly (case-insensitive)' implies this tool is for exact-match lookups rather than fuzzy search, which contrasts with the sibling dataset_search. However, it never explicitly says when to use this tool over alternatives, and no exclusions or alternative recommendations are provided. The usage context is implied, not stated.

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

A4/5.0
Disambiguation5/5

Each tool targets a clearly distinct operation: schema introspection, provenance, exact row lookup, substring search, multi-value comparison, statistics, and top/bottom ranking. Despite some overlap among row, compare, and search, the descriptions make the boundaries obvious.

Naming Consistency5/5

All tools follow the same dataset_ prefix and use short, readable operation names. The naming is uniform and predictable, making it easy for an agent to infer the purpose of each tool.

Tool Count5/5

Seven tools is a well-scoped size for a dataset Q&A server. Each tool provides a distinct capability without unnecessary duplication, and the count is appropriate for the domain.

Completeness4/5

The tool set covers the core dataset workflow: schema discovery, provenance, row retrieval, search, comparison, statistics, and ranking. Minor gaps exist such as multi-column filtering or distinct-value extraction, but these are not major blockers for typical questions.

Resources