Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the Huddlevo 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.4/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. It discloses the case-insensitive exact-match behavior, but it does not say whether all matching rows are returned, what happens if no row matches, or how the output is structured. Given the simple read-like operation, this is minimally adequate.

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. The essential distinction ('exactly, case-insensitive') is included, though the phrasing 'The rows... where' is slightly awkward.

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 tool with no output schema and no annotations, the description provides the core matching logic but omits result-shape details and edge-case behavior. The small parameter surface keeps the burden modest, so a minimum-viable level is reached.

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?

Schema description coverage is 0%, so the description needs to explain the two parameters. It meaningfully connects 'column' and 'value' into the matching predicate, but it does not clarify accepted column names or value format beyond the schema's generic string type.

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 Huddlevo dataset matching an exact column-value comparison, and the title adds the 'look up' verb. The 'exactly (case-insensitive)' clause hints at the distinction from search-like siblings, though it does not explicitly differentiate them.

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 a usage context: use this tool when an exact, case-insensitive match is needed. However, it does not explicitly state when to prefer it over sibling tools such as dataset_search, nor does it mention alternatives or when not to use it.

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.8/5.0
Disambiguation4/5

Most tools are clearly separated by query type: exact match, contains search, compare, stats, top, schema, and provenance. There is minor overlap between dataset_row and dataset_compare for simple equality lookups, but the descriptions make the intended use clear enough.

Naming Consistency4/5

All tools share the dataset_ prefix and use snake_case, which creates a predictable family. However, the second part mixes nouns (columns, provenance, row, stats), verbs (compare, search), and adjectives (top), so it is not a strict verb_noun convention.

Tool Count5/5

Seven tools is a well-scoped number for a single-dataset query interface. Each tool addresses a distinct common question type, and none feel redundant or excessive.

Completeness4/5

The set covers schema discovery, exact value lookup, substring search, multi-value comparison, numeric statistics, extreme values, and provenance. Minor gaps include no distinct-values tool and no paginated full-table retrieval beyond the 50-row search cap, but core exploration workflows are supported.

Resources