Skip to main content
Glama

Search the dataset

dataset_search

Rows of the Soapvo 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.6/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It usefully discloses case-insensitive matching, substring containment semantics, and a maximum of 50 results. However, it does not mention ordering, pagination, empty-result behavior, or whether the query must match whole cells versus substrings beyond the word 'contain.'

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 compact sentence conveys the core behavior, the matching rule, and the result cap with no filler. The most important detail—what the tool returns—is front-loaded.

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 tool with no output schema and no annotations, the description is largely complete: it names the dataset, defines the query semantics, and states the result limit. It could add return-format or ordering details, but nothing essential is missing for invoking the tool correctly.

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 description coverage is 50%: only 'query' has a schema description. The tool description adds meaning by explaining that the query is matched case-insensitively in any cell, and the 'up to 50' phrase hints at the limit parameter's cap. However, it does not explicitly state that 'limit' controls the number of returned rows, leaving some inference needed.

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 operation: returning rows of the Soapvo dataset whose cells contain the query, with case-insensitive matching and a 50-row cap. This clearly distinguishes search from the sibling tools like dataset_columns, dataset_row, and 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 Guidelines2/5

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

The description does not say when to use this tool versus the sibling tools, nor does it mention any exclusions or prerequisites. An agent must infer that this is for cell-level substring search rather than, say, fetching a specific row or computing statistics.

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.9/5.0
Disambiguation4/5

Each tool targets a distinct operation type (schema, provenance, exact lookup, substring search, multi-value compare, stats, top/bottom), so boundaries are mostly clear. dataset_compare is slightly vague by name but its description distinguishes it from dataset_row and dataset_search.

Naming Consistency5/5

All tools follow a predictable `dataset_<topic>` snake_case pattern. Even though some suffixes are nouns and some are verbs, the uniform prefix and lowercase underscore style make the set feel consistent.

Tool Count5/5

Seven tools is a well-scoped size for a single-dataset exploration server. Each tool serves a clear querying or metadata need without redundancy.

Completeness4/5

The toolkit covers schema, provenance, exact match, search, multi-value comparison, numeric stats, and top/bottom rows—a broad and practical surface. Obvious missing pieces are distinct-value enumeration and group-by aggregates, but most common questions can be answered with the existing tools.

Resources