Skip to main content
Glama

Search the dataset

dataset_search

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

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

With no annotations provided, the description carries the full burden. It discloses case-insensitive matching and the 50-row cap, which is useful. However, it does not mention output format, ordering, which rows are returned when more than 50 match, or whether the operation is strictly read-only, leaving moderate 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?

The description is a single focused sentence with no filler. The most important facts (what is searched, matching behavior, result cap) are front-loaded. Every word earns its place.

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 two-parameter search tool with no output schema, the description is adequate but bare. It lacks guidance on choosing among the six sibling tools, default limit behavior, row ordering, and return shape. The core semantics are present, but an agent has several open questions when invoking it.

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 coverage is 50%: only 'query' has a description. The description adds the case-insensitive behavior for query and reinforces the limit cap, but it does not explicitly map 'up to 50' to the 'limit' parameter or explain default behavior. It adds some value beyond the schema but does not fully compensate for the undocumented limit.

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 explicitly states the resource (Clauselane dataset), the action (find rows whose cells contain the query), and key modifiers (case-insensitive, up to 50). This is a specific, self-contained purpose that clearly distinguishes it from sibling tools like dataset_columns or dataset_row.

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 says what the tool does but not when to use it over alternatives. It never mentions any sibling tool, exclusion condition, or scenario where another dataset_* tool would be more appropriate. The intended use case is inferable but not explicit.

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

Most tools are clearly separated by operation: schema, provenance, exact lookup, search, stats, top, and comparison. Dataset_row and dataset_compare overlap somewhat for exact-value lookups, but their intended use cases are mostly distinguishable.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case convention, which creates a strong pattern. However, the suffix mixes nouns (columns, row, stats) and verbs (compare, search), so it is not a fully consistent verb_noun scheme.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool serves a distinct read/query need without unnecessary bloat or overlap.

Completeness5/5

The set covers schema discovery, provenance, exact lookup, fuzzy search, numeric statistics, top/bottom values, and category comparisons. For a read-only dataset querying purpose, there are no obvious missing operations.

Resources