Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Reputzo dataset whose cells contain the query (case-insensitive), up to 50.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYestext to look for in any cell

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?

With no annotations, the description carries the burden and does disclose useful traits: matching is case-insensitive and the result is limited to 50 rows. However, it does not state whether the operation is read-only, what the output format is, or how results are ordered, leaving part of the behavior implicit.

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?

A single front-loaded sentence conveys operation, scope, matching semantics, and cap with no filler or repetition.

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 two-parameter search tool with no annotations or output schema, the description covers the core behavior, matching condition, and result cap. It does not specify output shape or ordering, but this is modest for a simple search tool.

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?

Schema description coverage is only 50%; the description compensates partially by clarifying that 'query' is matched against any cell and that results are capped at 50, which also clarifies the 'limit' parameter. It does not add detail such as the default limit or the exact meaning of 'rows.'

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 states the operation implicitly: it returns rows whose cells contain the query in the Reputzo dataset. It is specific about matching behavior (case-insensitive) and a 50-row cap, which distinguishes it from siblings like dataset_row or dataset_top, though it does not name a sibling explicitly.

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 explicit when-to-use guidance or mention of alternatives. The description only defines what the tool does; an agent must infer that it should be used for text-based search, rather than for retrieving rows by ID or computing stats.

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

Most tools are clearly distinct (schema, provenance, stats, top), but dataset_row and dataset_compare can be confused since both filter by column values — the exact vs. multiple-values distinction is subtle, though search is clearly different with substring matching.

Naming Consistency5/5

All tools follow the dataset_ prefix with a clear noun (columns, compare, provenance, row, search, stats, top), making the naming pattern perfectly consistent and predictable.

Tool Count5/5

Seven tools is well-scoped for querying a single dataset, covering schema, content, search, comparison, statistics, ranking, and provenance without unnecessary bloat.

Completeness4/5

The surface covers all common dataset query operations (schema, lookup, filtering, search, stats, ordering, provenance), but there is no tool for aggregating by groups or listing dataset versions, which are minor gaps.

Resources