Skip to main content
Glama

Look a row up by an exact key

dataset_row

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

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

No annotations are provided, so the description carries the full burden. It discloses the key matching behavior (exact, case-insensitive) and implies a read-only operation via 'look up,' but it does not explicitly state that no data is modified, nor does it clarify the output format (single row vs. multiple rows) or behavior on no matches. These gaps are notable for a tool with no annotation support.

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, focused sentence that front-loads the core action and dataset, then adds the matching condition. It contains no filler or redundant information, making it highly efficient for an agent to parse.

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 lookup with two string parameters and no output schema, the description covers the essential selection logic. However, it leaves ambiguity about whether the result is a single row or multiple rows (title says 'a row', description says 'rows'), and it does not mention the absence of an output schema or how errors/no-matches are handled. These gaps could lead an agent to mispredict the tool's behavior.

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 implicitly defines the parameters via the phrase 'where a column equals a value,' suggesting that 'column' is a column name and 'value' is the lookup value, but it provides no details on valid column names, value formats, or constraints beyond the schema's minLength. This is insufficient for a low-coverage scenario.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The title and description clearly state the action (look up rows) and the resource (HeadcountDesk dataset) with a precise matching criterion (exact, case-insensitive). This distinguishes it from sibling tools like dataset_search, which likely handles partial or fuzzy matches, so an agent can immediately tell them apart.

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—by contrasting with 'exactly' and 'case-insensitive.' However, it does not explicitly name alternatives like dataset_search or state when NOT to use it, leaving the routing 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

A4.1/5.0
Disambiguation5/5

Each tool maps to a distinct query type: schema discovery, provenance, exact matches, substring search, value comparison, numeric stats, and top/bottom rows. The potential overlap between dataset_row and dataset_compare is mitigated by the explicit X-vs-Y ordering purpose of compare.

Naming Consistency4/5

All tools share the consistent dataset_ prefix and snake_case, making the family immediately recognizable. However, suffixes mix nouns (columns, row, stats) with verbs (compare, search), so the pattern is not perfectly uniform.

Tool Count5/5

Seven tools is a well-scoped set for interacting with a single read-only dataset. Each tool covers a distinct user need without redundancy or overwhelming breadth.

Completeness5/5

The dataset surface is complete for the apparent purpose: schema, provenance, exact lookup, full-text search, comparison, summary statistics, and ranked extremes are all available. No obvious query type relevant to this domain is missing.

Resources