Skip to main content
Glama

Search the dataset

dataset_search

Rows of the TakeoffDeck 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?

With no annotations provided, the description discloses important behavioral details: case-insensitive matching, cell containment semantics, and a result cap of 50. It does not mention default limit behavior, sorting, or whether it is read-only, but the core behavior is 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, focused sentence that communicates the essential behavior with no unnecessary words. It is well-structured and easy to parse.

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 search tool with no output schema or annotations, the description covers the main purpose, matching behavior, case sensitivity, and result limit. It lacks details like default limit or sorting order, but these are not critical for the agent to understand and use the tool effectively.

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 query parameter is described in the schema, and the description adds case-insensitivity. The limit parameter is not described in the schema, but the description clarifies the maximum result size with 'up to 50'. This adds meaningful context beyond the schema, though the default limit is not specified.

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 clearly states that the tool returns rows from the TakeoffDeck dataset where any cell contains the query, with case-insensitive matching and a limit of 50. This distinguishes it from the sibling tools like dataset_columns, dataset_stats, or dataset_top by focusing on row-level content search.

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 explains what the tool does but does not explicitly say when to use it compared to the sibling tools. It implies usage for content-based row lookup, but it does not name alternatives or provide selection criteria.

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

Each tool targets a distinct querying need: schema, provenance, exact match, substring search, comparison, statistics, and top/bottom ranking. Dataset_row and dataset_compare could be confused for single-value lookups, but their stated purposes (exact equality vs. X/Y comparisons) make them distinguishable.

Naming Consistency5/5

All tools follow a consistent dataset_ prefix with lowercase snake_case naming. Although the second token mixes nouns and verbs, the pattern is highly predictable and easy to infer.

Tool Count5/5

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

Completeness5/5

For the apparent domain of exploring and querying a single dataset, the surface is complete: schema discovery, provenance, exact lookup, search, comparison, statistics, and ranking are all covered. No obvious read-only query operations are missing.

Resources