Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the Kbasevo 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.1/5.0
Behavior3/5

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

Since no annotations are provided, the description carries the full burden of behavioral disclosure. It does disclose the core matching behavior, including case-insensitivity, but does not mention whether this is a read-only operation, how many rows may be returned, what happens on no match, or any error/rate-limit behavior.

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 sentence with no filler, no repetition of schema metadata, and the most important scoping detail (exact equality, case-insensitive) is front-loaded. Every word earns its place.

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?

The tool is simple, but with no annotations and no output schema, the description should provide more context about return behavior and when this lookup tool is preferred over dataset_search. It is adequate for basic invocation but leaves an agent inferring several practical details.

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

Parameters2/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 by explaining both parameters. It loosely maps 'column' and 'value' to the equality predicate, but it does not explain how column names are specified, what value formats are allowed, or whether column names are case-sensitive. The parameter names themselves are doing most of the work.

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 clearly identifies the resource (rows of the Kbasevo dataset) and the filtering behavior (column equals value exactly, case-insensitive). It does not explicitly name a verb like 'returns' or 'looks up', and it does not explicitly distinguish itself from sibling tools, though the 'exactly' phrasing hints at contrast with dataset_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies exact-match lookup but gives no explicit guidance about when to use this tool versus alternatives like dataset_search. It does not state any exclusions, prerequisites, or conditions that should route an agent to dataset_row.

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

The tools split cleanly into metadata (columns, provenance), retrieval (row, search, compare), and aggregation (stats, top). dataset_row and dataset_compare overlap somewhat since both filter by column values, but the multi-value ordered comparison purpose is distinct enough.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case convention, making the family recognizable. However, the second half mixes noun-like names (columns, row, stats, top) with verb-like names (compare, search), so the pattern is consistent but not uniformly verb_noun.

Tool Count5/5

Seven tools is a well-scoped set for exploring a single dataset: schema, provenance, exact lookup, substring search, comparisons, numeric stats, and extremes. No tool feels redundant, and the count is appropriate for the server's purpose.

Completeness4/5

The surface covers the common dataset questions: schema, attribution, exact matching, fuzzy search, comparative queries, numeric summaries, and ranking. It lacks advanced multi-condition filtering or full-dump pagination, but those are not clearly required for this read-only dataset browser.

Resources