Skip to main content
Glama

Search the dataset

dataset_search

Rows of the Sudslane 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 usefully discloses case-insensitive matching and the 50-row cap, but does not mention ordering, pagination, or default limit behavior. For a read-only search tool, the disclosed traits are meaningful but not exhaustive.

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?

A single, front-loaded sentence with no filler. It efficiently conveys the matching rule, case sensitivity, and result cap.

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, the description adequately conveys core behavior and constraints. It could be more explicit about return format and default limit, but an agent can correctly select and invoke the tool based on the given information.

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 documents query as 'text to look for in any cell', and the description adds case-insensitivity. The limit parameter has no schema description, but the description's 'up to 50' indirectly aligns with its maximum. With 50% schema coverage, the description partially compensates but does not fully define limit's default behavior.

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: return rows from the Sudslane dataset whose cells contain the query, case-insensitively, up to 50. This clearly distinguishes it from sibling tools like dataset_stats or dataset_top by focusing on content-based search.

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 description provides clear context for when to use the tool: when you need rows matching a substring query across cells. However, it does not explicitly mention sibling tools or conditions where an alternative would be preferable.

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

Each tool targets a distinct mode: schema, provenance, exact equality, substring search, multi-value comparison, statistics, and top-N ranking. The only mild overlap is between dataset_row, dataset_search, and dataset_compare, but their descriptions clearly separate exact match, contains, and ordered value-set matching.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and snake_case convention, making the family instantly recognizable. The suffixes are a mix of nouns and verbs, but the pattern is still predictable and readable.

Tool Count5/5

Seven tools is well-scoped for a single-dataset query server. Each tool covers a necessary query or metadata concern without unnecessary redundancy or bloat.

Completeness5/5

The set covers schema discovery, provenance, exact lookup, search, comparison, statistics, and top/bottom ranking. For a read-only dataset tool, this covers the core querying workflows with no obvious dead ends.

Resources