Skip to main content
Glama

Search the dataset

dataset_search

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

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

With no annotations, the description carries the behavioral burden and does it well: it discloses case-insensitive matching, substring containment in any cell, and a 50-row cap. It does not mention ordering or output format, but for a read-only search tool the key behavioral traits are present.

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?

One sentence conveys the resource, the matching predicate, case sensitivity, and the row cap. There is no filler or redundant restatement of the tool name.

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?

For a simple two-parameter search tool, the core behavior is well covered. However, with no output schema, the description does not clarify whether returned rows contain all columns, the ordering, or the exact effect of the limit parameter, leaving some ambiguity for an agent.

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?

The schema already documents query as 'text to look for in any cell', and the description adds the useful case-insensitivity detail. However, the limit parameter is only implicitly referenced via 'up to 50'; the description does not explicitly explain that limit controls the maximum number of returned rows.

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 returns: rows of the EmployeeDeskHQ dataset containing the query text in any cell, case-insensitively, up to 50 rows. This clearly distinguishes it from sibling tools like dataset_row, dataset_stats, or dataset_top, which serve different lookup or aggregation purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The use case is clear: call this tool when you need rows matching arbitrary text across the dataset. It does not explicitly name alternatives or exclusions, but no sibling tool performs the same cell-substring search, so the context is sufficient.

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

Most tools are clearly distinct, but dataset_row, dataset_search, and dataset_compare have overlapping filtering behavior that could lead an agent to pick the wrong one. Schema, provenance, stats, and top are unambiguous.

Naming Consistency4/5

All tools share the dataset_ prefix with snake_case, which is easy to follow. However, the suffixes mix nouns (columns, row, stats) and verbs (compare, search), so it is not a fully consistent verb_noun convention.

Tool Count5/5

Seven tools is a well-scoped set for a single-dataset query server. Each tool covers a distinct mode of exploration without unnecessary redundancy.

Completeness4/5

The surface covers schema discovery, provenance, exact matching, full-text search, comparison ordering, numeric stats, and top/bottom rows. A minor gap is the lack of a general paginated 'all rows' or arbitrary aggregation tool, but common dataset questions are well supported.

Resources