Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

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

C2.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does disclose the case-insensitive matching behavior, which is a useful behavioral trait. However, it does not mention whether the tool returns a single row or multiple rows, what happens if no match is found, or any performance or limit constraints. The ambiguity between 'a row' in the title and 'The rows' in the description is a notable gap.

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 concise sentence with no filler. It front-loads the core function and the key behavioral detail (case-insensitive). It could be structured more actively, but it is efficient and easy to parse.

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

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description does not explain the return format (e.g., whether it returns a list of rows, a count, or a single object). The ambiguity about single vs. multiple rows is unresolved, and error behavior is not mentioned. For a tool with only two parameters, the description is too thin to fully guide an agent on expected results, though it does specify the dataset and matching rule.

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?

The input schema defines two parameters (column and value) with no descriptions. The description's phrase 'where a column equals a value' adds minimal context, essentially restating the parameter names. It does not clarify what constitutes a valid column (e.g., column name vs index), whether the value must be an exact string, or provide examples. With 0% schema coverage, the description fails to compensate for the lack of parameter documentation.

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 states the tool returns rows from the Sittingly dataset where a column matches a value exactly (case-insensitive). The title reinforces this with 'Look a row up by an exact key', and the phrase 'exactly (case-insensitive)' differentiates it from fuzzy search siblings like dataset_search. However, the description is phrased passively ('The rows of...') rather than using an active verb, and it does not explicitly name the sibling it is not.

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?

There is no guidance on when to use this tool versus alternatives. The description only states what the tool does, not when it should be preferred over dataset_search (likely fuzzy matching) or other sibling tools. No exclusions or context are provided, leaving the agent to infer usage from the tool name and title.

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

Most tools have clearly distinct purposes: schema discovery, provenance, exact lookup, substring search, stats, and top/bottom ranking are easy to tell apart. However, dataset_row and dataset_compare overlap in that both do exact column-value matching, with compare merely extending row to multiple values, which could cause some selection uncertainty.

Naming Consistency4/5

All tools share the clean dataset_ prefix and use lowercase snake_case, making the set feel cohesive. The second part mixes nouns (columns, provenance, row, stats, top) with verbs (compare, search), but the pattern is still predictable and readable.

Tool Count5/5

Seven tools is a well-scoped size for a dataset-querying server. Each tool covers a distinct query need without redundancy or bloat, and the count is comfortably within the ideal range.

Completeness5/5

The server covers the full read-only lifecycle of working with a dataset: schema discovery, provenance attribution, exact lookup, substring search, comparisons, numeric stats, and top/bottom ranking. There are no obvious dead ends for the stated purpose.

Resources