Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Endpointo 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.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral burden. It discloses that matching is case-insensitive, that query text is matched across cell contents, and that results are capped at 50 rows. It implicitly presents the operation as a read-only search, though it does not mention ordering, empty results, or response format.

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 entire description is one sentence with no filler. It front-loads the operative behavior and key constraints, packing the predicate, case-insensitivity, and row cap into a compact, scannable form.

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 two-parameter search with no output schema, the description covers what the tool returns (matching rows) and the main operational constraints. The only gaps are the default limit when the parameter is omitted and result ordering, which are minor for correctly invoking the tool.

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 already documents query as 'text to look for in any cell', while limit has only type and bounds. The description adds that matching is case-insensitive and containment-based across all cells, and that 'up to 50' clarifies the limit parameter's purpose beyond its numeric maximum.

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 a specific selection predicate: rows whose cells contain the query, with case-insensitive matching and a 50-row cap. This clearly distinguishes it from siblings like dataset_row (single-row retrieval) and dataset_stats (aggregate statistics). The title reinforces the search intent.

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 this is for content-based search across all dataset cells, and the sibling names make adjacent operations visible. However, it never explicitly says when to prefer this tool over alternatives, nor does it mention when not to use it or what prerequisites apply.

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 has a clearly distinct purpose: schema, exact match, search, comparison, stats, top values, and provenance. No two tools overlap in functionality; an agent can easily select the right tool based on the query type.

Naming Consistency5/5

All tool names follow the consistent 'dataset_' prefix followed by a descriptive noun (columns, compare, provenance, row, search, stats, top). The naming pattern is uniform and predictable.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool covers a specific aspect of querying and understanding the dataset without unnecessary redundancy or bloat.

Completeness4/5

The surface covers schema, metadata, exact lookup, substring search, comparison, statistics, and ordering. It lacks features like distinct value enumeration or grouping, but for a read-only dataset exploration tool, the coverage is strong with only minor potential gaps.

Resources