Skip to main content
Glama

Look a row up by an exact key

dataset_row

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

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries full responsibility for behavioral disclosure. It reveals the key behaviors: exact matching and case-insensitivity. However, it does not mention return shape in detail, behavior on no matches, or whether multiple matching rows are returned, leaving some behavioral ambiguity.

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, compact sentence that front-loads the core behavior and includes the most important qualifiers (exactly, case-insensitive). There is no wasted text, and the title reinforces the purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/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 with no output schema, the description provides the essential information: what data is queried, how the match works, and that rows are returned. Minor gaps remain around output format and error handling, but these are relatively minor for a lookup operation.

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. It does so by clarifying that 'column' is the field to compare against and 'value' is the exact value to match, adding the crucial semantics of exact and case-insensitive equality that the bare schema lacks.

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 states a clear operation: retrieving rows from the Hreflangly dataset based on an exact column-value match. It differentiates itself from the sibling dataset_search by specifying exact, case-insensitive equality, which tells an agent this is the precise-lookup tool, not a flexible search.

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 exact-match and case-insensitive semantics imply when to use this tool, but the description does not explicitly mention alternatives or state 'use this when you need an exact key lookup, use dataset_search for partial/fuzzy matches'. Usage guidance is inferred rather than stated.

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

Most tools have clearly distinct purposes: schema, provenance, exact lookup, substring search, stats, top values, and multi-value comparison. The only mild ambiguity is between dataset_row and dataset_compare, since both return rows filtered by column values, and between dataset_columns and dataset_provenance, since both mention provenance.

Naming Consistency4/5

All tool names consistently use the dataset_ prefix and snake_case, which makes the set feel cohesive. However, the suffix style is mixed: some are nouns like columns, provenance, row, and stats, while others are verbs like compare and search.

Tool Count5/5

Seven tools is well within the ideal range for a dataset-focused server. Each tool covers a distinct analytical need without redundancy, so the count feels intentional and appropriately scoped.

Completeness5/5

The toolset covers schema discovery, provenance, exact row lookup, free-text search, targeted comparison, numeric statistics, and extreme-value ranking. For a read-only dataset querying server, this is a complete and practical surface with no obvious dead ends.

Resources