Skip to main content
Glama

Look a row up by an exact key

dataset_row

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

The description contributes one behavioral trait (case-insensitive matching), which is useful beyond the schema. However, it leaves ambiguity: the title says 'a row' (singular) while the description says 'the rows' (plural), and it does not disclose matching behavior for missing values, non-unique matches, or invalid columns.

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, front-loaded sentence that directly conveys the core operation and the key matching rule. No filler or redundancy.

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 description is mostly enough, but the singular/plural mismatch between title and description is a real gap, and with no output schema and no annotations the return-behavior expectations are under-specified.

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?

With schema description coverage at 0%, the description must carry parameter meaning. It maps both parameters ('column' and 'value') into the phrase 'where a column equals a value', which is minimal but sufficient. It does not specify that 'column' must be an existing dataset column or clarify value formatting nuances.

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 and description clearly identify a row-lookup operation using an exact key match, and the description adds the case-insensitive detail. However, it does not explicitly differentiate this from the sibling dataset_search tool beyond the word 'exactly'.

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?

Usage context is implied by 'equals a value exactly' and 'case-insensitive', suggesting this is for exact-match lookups rather than fuzzy search. But there is no explicit guidance on when to choose this over dataset_search or what to do when no match exists.

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
Disambiguation5/5

Each tool targets a distinct operation on the dataset: schema discovery, exact row lookup, fuzzy search, comparative queries, top/bottom ranking, numeric statistics, and provenance metadata. No two tools have overlapping purposes, making selection unambiguous.

Naming Consistency5/5

All tools follow a uniform 'dataset_' prefix with a descriptive noun (columns, compare, provenance, row, search, stats, top). This consistent verb-noun pattern ensures predictable and intuitive naming.

Tool Count5/5

Seven tools provide a well-scoped surface for a dataset querying server, covering schema, data retrieval, statistics, and metadata without redundancy or excessive granularity.

Completeness5/5

The tool set covers the full range of read-only dataset operations: schema discovery, exact and fuzzy row retrieval, comparisons, top/bottom ranking, numeric aggregation, and provenance. No obvious gaps exist for typical analytical queries.

Resources