Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

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

With no annotations provided, the description carries the burden of disclosing behavior. It does disclose the key matching behavior: exact match and case-insensitivity. However, it does not mention whether multiple rows can be returned, what happens when no row matches, or whether the operation is read-only, though 'look up' implies a query.

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 sentence with no filler and conveys the core behavior efficiently. It could be slightly clearer grammatically, but it is appropriately sized and front-loads the key matching semantics.

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 tool, the description provides the essential matching rule and dataset context. However, with no annotations and no output schema, it leaves some gaps: return format, multiple-match behavior, and explicit read-only intent are not stated. This is sufficient but minimal.

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?

The schema has 0% description coverage, so the description must compensate. It does add meaning by explaining that `column` is the field to search and `value` is the exact value to match, with case-insensitive behavior. Still, it does not elaborate on constraints such as needing an existing column name or how the values are compared beyond the stated case-insensitivity.

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 description clearly identifies the operation as looking up rows in the Footfally dataset by an exact column-value match. It distinguishes this from the sibling dataset_search by emphasizing exact equality and case-insensitivity, so an agent can tell it apart without opening other schemas.

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 the tool: when an exact, case-insensitive match on a column value is needed. However, it does not explicitly state when not to use it or mention alternatives like dataset_search for fuzzy or non-exact matching, leaving the routing decision to 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 distinct retrieval mode: schema, provenance, exact match, multi-value comparison, substring search, stats, and top/bottom rows. The main ambiguity is between dataset_row and dataset_compare, since both filter by exact column values, and dataset_columns mentions provenance while a dedicated provenance tool exists.

Naming Consistency5/5

All tools share the dataset_ prefix and use clear, consistent nouns describing their function: columns, compare, provenance, row, search, stats, top. There is no mixing of naming conventions or vague verb-based names.

Tool Count5/5

Seven tools is well-scoped for a single-dataset exploration server. Each tool has a distinct role and the set feels neither bloated nor thin.

Completeness4/5

The tool surface covers schema discovery, provenance/attribution, exact lookup, fuzzy search, comparisons, numeric summaries, and top/bottom ordering. A minor gap is the lack of a full-table or sampling tool, but core dataset exploration workflows are well supported.

Resources