Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Opexvo 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
Behavior2/5

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

The description does disclose exact equality and case-insensitivity, which are useful matching semantics. However, with no annotations, it leaves unclear whether one row or all matching rows are returned, what happens on no match, and what the response shape is; the title's 'a row' and description's 'rows' even conflict.

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?

One compact sentence that front-loads the core lookup condition. It contains no filler or repetition and is 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?

For a simple lookup the core condition is stated, but with no output schema and no annotations the description omits return cardinality, no-match behavior, and any interaction with sibling search tools. These gaps leave an agent uncertain on important call details.

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 provides only minLength for both parameters and no descriptions, so coverage is 0%. The description adds the core semantic that 'column' is the field and 'value' is the equality target with exact case-insensitive comparison, but it gives no guidance on valid column names, value formats, or special cases.

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 that the tool returns rows from the Opexvo dataset where a column equals a value, and the title adds the 'exact key' lookup intent. It is specific about verb and resource, though it does not explicitly distinguish itself from 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?

No sentence explains when to use this tool instead of dataset_search, dataset_top, or other siblings. There are no exclusions or prerequisites, so an agent must infer applicability from the name and title alone.

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

Each tool has a distinct primary purpose: schema, provenance, exact row lookup, substring search, multi-value comparison, summary stats, and top/bottom rankings. The main ambiguity is between dataset_row and dataset_compare, since both do exact value filtering, though one is single-value and the other is multi-value/ordered.

Naming Consistency4/5

All tools share a clean dataset_ prefix and use snake_case, making the family immediately recognizable. The second part mixes noun forms (columns, provenance, row, stats) with verb-like forms (compare, search, top), so the pattern is not perfectly uniform but remains readable and predictable.

Tool Count5/5

Seven tools is a well-scoped size for a read-only dataset exploration server. Each tool covers a distinct need without redundancy or unnecessary bloat.

Completeness5/5

The tool surface covers the full read-only dataset workflow: schema discovery, row retrieval by exact match, substring search, multi-value comparison, numeric summaries, ranking, and provenance/attribution. There are no obvious missing operations for the stated purpose.

Resources