Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Mashzo 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

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses case-insensitive matching, substring containment (via 'contain'), and a result cap of 50. However, it does not mention result ordering, pagination, whether all columns are searched (though 'cells' implies all), or the exact return format. These gaps keep it from being fully transparent, though core behaviors are covered.

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 that front-loads the core action (rows containing query) and includes key modifiers (case-insensitive, up to 50). There is zero waste; every element adds value. It is well-structured and immediately scannable.

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 description is adequate for a simple search tool but missing some contextual details: it does not specify the return format (full row objects vs IDs), result ordering, or whether there is a default limit if the limit parameter is omitted. Given the lack of an output schema and annotations, these details would help an agent invoke it correctly, but the core functionality is clear enough for basic use.

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 coverage is 50%: the query parameter has a description in the schema, while limit has only type and constraints. The description adds no parameter-specific meaning beyond the schema, but the schema itself adequately explains limit via min/max. The description's 'up to 50' reinforces the limit but doesn't clarify default behavior. Since coverage is moderate, a 3 is fair.

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 of a specific dataset whose cells contain the query, with case-insensitivity and a limit of 50. It uses a specific verb (implicitly 'search') and resource (Mashzo dataset), and it is distinct from siblings like dataset_row (single row) or dataset_stats (statistics). However, it does not explicitly name sibling alternatives to differentiate, so a 4 is appropriate.

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 implies usage: if you need to find rows containing specific text across any cell, use this tool. It does not provide explicit when-to-use or when-not-to-use guidance, nor does it mention alternatives. The context is clear but lacks explicit exclusions or comparisons with sibling tools.

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

The tools are largely distinct: schema, provenance, exact lookup, substring search, compare, stats, and top-k. The only mild overlap is among dataset_row, dataset_search, and dataset_compare, since they all retrieve rows, but their descriptions clarify exact match, contains, and value-list comparison respectively.

Naming Consistency5/5

Every tool uses a consistent `dataset_` prefix with clear snake_case names. Even though some suffixes are nouns and some are verbs, the pattern is uniform and predictable across the entire tool set.

Tool Count5/5

Seven tools is a well-scoped size for a dataset querying server. Each tool covers a distinct common operation without feeling redundant or excessive.

Completeness4/5

The surface covers the core dataset operations well: schema inspection, provenance, exact lookup, search, comparisons, statistics, and top/bottom ranking. Minor gaps include distinct-value enumeration and grouped aggregation, but these are not fatal for typical dataset questions.

Resources