Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the Commercial Refinance Quotes 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.

  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 full burden and does disclose the non-obvious matching semantics (exact equality, case-insensitive), which is genuine behavioral value. However, it says nothing about how many rows can come back, whether no-match yields empty or error, or any access/limit behavior, which is a meaningful gap for an unannotated tool.

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?

A single front-loaded sentence with no filler; the exact-match qualifier is positioned immediately after the object it qualifies. It is a noun-phrase fragment rather than an imperative, which slightly blunts the action framing but keeps it tightly scoped.

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 two-parameter lookup with no annotations and no output schema, the description covers the matching contract but omits the return shape (multiple rows vs one), cardinality limits, and empty-result behavior. Those omissions are minor for such a simple tool but leave the agent guessing at edge cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/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, and it does: it explains that 'column' identifies the column to test and 'value' is what it is compared against, plus the case-insensitive comparison rule that the schema never states. It stops short of noting that 'column' should be a valid dataset column (cf. dataset_columns) or how nested/null values behave.

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 names the resource (rows of the Commercial Refinance Quotes dataset) and the precise matching operation (column equals a value exactly, case-insensitive), which tells an agent this is a point lookup rather than a broad query. It does not name the sibling it competes with (e.g., dataset_search), so differentiation is implied by the word 'exactly' rather than stated.

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 is only implied: the exact/case-insensitive framing suggests this is for known-value lookups while dataset_search handles looser queries, but there is no explicit when-to-use, when-not-to-use, or named alternative. An agent must infer the routing decision from sibling names alone.

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.

Resources