Skip to main content
Glama

Look a row up by an exact key

dataset_row

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

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

The description implies a read-only lookup but does not explicitly state side effects, permissions, or lack thereof. With no annotations, the description carries the full burden and only partially addresses 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 concise sentence with no redundancy. It directly conveys the core functionality without extraneous information.

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 lookup with two string parameters and no output schema, the description is sufficiently complete. It does not address potential output format or error handling, but these are not explicitly required.

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 description clarifies that 'value' is matched exactly and 'column' is the target column, adding some meaning beyond the schema. However, it does not provide details on allowed formats, enumerations, or edge 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 the tool returns rows where a column equals a value exactly, with case-insensitivity. It is specific about the operation but does not explicitly distinguish from sibling tools like 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 guidance is provided about when to use this tool versus alternatives. The description only states what it does, not when it should be preferred.

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

Most tools have clearly distinct purposes: schema, provenance, stats, top, and three row-query modes. The row-query tools (dataset_row, dataset_search, dataset_compare) are the main source of ambiguity, though their descriptions do clarify the different match semantics.

Naming Consistency4/5

All tools share the dataset_ prefix and use consistent snake_case, giving a clear family identity. The second part is not uniformly verb-based (columns, provenance, top vs. compare, search), but the pattern is still predictable and readable.

Tool Count5/5

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

Completeness4/5

The tool surface covers schema discovery, provenance, exact and fuzzy row lookup, comparisons, aggregations, and ranking, so most data-exploration questions are supported. Minor gaps include no general pagination through all rows and no distinct-values tool, but these are workaroundable.

Resources