Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the TakeoffDeck 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.3/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. It implies a read-only lookup (no side effects mentioned), but it does not explicitly state that no mutations occur or whether it returns an error for no matches. This is a minor gap.

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 concise and to the point, capturing the core functionality in a single sentence without unnecessary detail. It is well-structured and easy to parse.

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 sibling tools (e.g., dataset_search, dataset_columns) provide context that this is a lookup operation, but the description does not explicitly differentiate itself. It would benefit from noting that it returns exact matches (case-insensitive) as opposed to search which may support partial or fuzzy matching. Given the simplicity, it is adequate but not fully complete.

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 schema provides only parameter names and types; there are no per-parameter descriptions. The description mentions 'column' and 'value' in the context of matching, but does not clarify what values are valid (e.g., column names, data types) or edge cases (e.g., multiple matches). This leaves significant ambiguity.

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 looks up rows in a dataset based on an exact column-value match. The verb 'look up' and the resource 'TakeoffDeck dataset' are specific, though it could be more explicit about the return format (e.g., single row vs. multiple rows).

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 indicates that matching is 'exactly' and 'case-insensitive', which distinguishes it from a fuzzy search. However, it does not explicitly state when to prefer this over the sibling tool 'dataset_search', leaving some ambiguity for the agent.

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

Each tool targets a distinct querying need: schema, provenance, exact match, substring search, comparison, statistics, and top/bottom ranking. Dataset_row and dataset_compare could be confused for single-value lookups, but their stated purposes (exact equality vs. X/Y comparisons) make them distinguishable.

Naming Consistency5/5

All tools follow a consistent dataset_ prefix with lowercase snake_case naming. Although the second token mixes nouns and verbs, the pattern is highly predictable and easy to infer.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset querying server. Each tool covers a distinct query mode without unnecessary redundancy or bloat.

Completeness5/5

For the apparent domain of exploring and querying a single dataset, the surface is complete: schema discovery, provenance, exact lookup, search, comparison, statistics, and ranking are all covered. No obvious read-only query operations are missing.

Resources