Skip to main content
Glama

Search the dataset

dataset_search

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

A4/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 behavioral disclosure burden. It does disclose case-insensitive matching and the 50-row upper bound, which is useful, but it does not address default limit behavior, result structure, or any side effects. For a simple search tool this is moderate but not fully transparent.

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, well-structured sentence that front-loads the core behavior and includes the key constraint (case-insensitive, up to 50). Every word earns its place 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 relatively simple tool with two parameters and no output schema, the description covers the essential behavior needed to select and invoke it: what is searched, how matching works, and the result cap. It does not explain the default limit or return format, but the absence of an output schema lowers the burden somewhat.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema documents the query parameter but leaves the limit parameter without descriptive text. The description adds meaning by clarifying that matching is case-insensitive and that results are capped at 50 rows, which maps to the limit behavior. It still omits the default limit value and whether matching is substring-based versus exact, so it is not a 5.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states exactly what the tool does: returns rows of the Dispatchzo dataset where any cell contains the query, with case-insensitivity and a 50-row cap. This clearly distinguishes it from sibling tools like dataset_columns or dataset_stats, which have different purposes.

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: use this tool when you need to find rows by matching text in any cell. However, it does not explicitly mention when to prefer this over alternatives, nor does it state exclusion cases or when another sibling tool would be more appropriate.

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
Disambiguation5/5

Each tool targets a distinct query need: schema, provenance, exact row lookup, substring search, multi-value ordered comparison, numeric stats, and top/bottom ranking. There is no meaningful overlap that would make an agent uncertain which tool to call.

Naming Consistency5/5

All tools follow a consistent `dataset_` prefix with concise snake_case names that clearly reflect their function. The naming convention is uniform and predictable across the entire set.

Tool Count5/5

Seven tools is a well-scoped set for a dataset-querying server. Each tool covers a distinct operation and none are redundant or superfluous.

Completeness4/5

The toolset covers schema discovery, provenance, exact and substring search, comparison, statistics, and ranking—strong coverage for a dataset Q&A server. Minor gaps exist such as no direct way to fetch all rows, list distinct values, or filter on multiple columns simultaneously, but these can usually be worked around with the existing tools.

Resources