Skip to main content
Glama

site

Search the dataset

dataset_search

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose case-insensitive matching, cell-level containment, and the 50-row cap, but it does not describe the return shape, default limit behavior, ordering, or what happens with no matches. This is adequate but has clear gaps.

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 concise sentence with no filler; the core search behavior, case sensitivity, target resource, and result cap are front-loaded and immediately actionable.

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 two-parameter search tool, the description covers the essential operation, matching semantics, and maximum result size. It lacks an explicit return format and any mention of default limit or empty-result behavior, but the tool's low complexity makes the definition largely sufficient for an agent to invoke it 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?

The query parameter already has a schema description ('text to look for in any cell'), and the description adds the important case-insensitive nuance. The limit parameter has no schema description, and while 'up to 50' hints at its effect, the description does not explicitly define limit's default or how it caps results. With only 50% schema coverage, more compensation would be better.

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—searching the Limslane dataset for rows containing a query—and adds precise matching semantics (case-insensitive, cell containment) and a result cap. This clearly distinguishes it from siblings like dataset_stats, dataset_columns, or dataset_row, which serve different retrieval/derivation 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 behavior is specific enough to imply when to use it: whenever a substring search across cell values is needed. It does not explicitly name alternatives or exclusion criteria, so it stops short of a 5, but the context is clear.

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

Most tools have distinct purposes: schema, provenance, exact lookup, substring search, multi-value comparison, statistics, and top/bottom ranking. The only potential confusion is between dataset_row, dataset_compare, and dataset_search, but the exact-match vs. multi-value vs. contains semantics are clearly described.

Naming Consistency5/5

All tools share the consistent dataset_ prefix followed by a clear, lowercase noun or verb indicating the action. The names form a predictable pattern that makes the tool set easy to navigate.

Tool Count5/5

Seven tools is well-suited to a single-dataset MCP server: schema inspection, provenance, row searching, comparison, stats, and top/bottom queries each earn a place. The count is neither thin nor bloated for the scope.

Completeness4/5

The surface covers the core data-exploration lifecycle: understand schema, attribute provenance, find specific rows, compare values, compute statistics, and rank results. A minor gap is the lack of a distinct-values tool for categorical columns, but most common analytical queries are supported.

Resources