Skip to main content
Glama

Search the dataset

dataset_search

Rows of the Orgbix 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
Behavior4/5

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

With no annotations provided, the description carries the burden of disclosing behavior. It does disclose case-insensitive substring matching and the 50-row limit, which are meaningful behavioral traits. It does not mention result ordering, default limit behavior, or explicitly state that the operation is read-only.

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 dense sentence conveys the dataset, the matching rule, the case sensitivity behavior, and the result cap. There is no filler or redundant restatement of the title.

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, the description is largely complete: an agent knows what to match, how matching behaves, and the maximum result size. It falls slightly short by not describing the default when limit is omitted, result ordering, or the returned row structure, especially since there is no output schema.

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'. The description adds case-insensitive matching and the 50-row cap, but it does not explain how the optional limit parameter maps to that cap or whether 50 is the default. With only 50% schema description coverage, this is partial compensation.

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?

Description states a precise behavior: returning rows of the Orgbix dataset whose cells contain the query, with case-insensitive matching and a 50-row cap. This is a specific verb-resource pairing and clearly separates search from sibling tools like dataset_stats, dataset_top, 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 Guidelines3/5

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

The intended use is implied by the matching behavior, but there is no explicit guidance about when to prefer this tool over alternatives or when not to use it. Sibling tools such as dataset_row, dataset_stats, and dataset_compare are not mentioned as alternatives.

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

Most tools have clearly distinct purposes: schema, provenance, stats, top, and three row-query modes. The row-query tools (dataset_row, dataset_search, dataset_compare) are the main source of ambiguity, though their descriptions do clarify the different match semantics.

Naming Consistency4/5

All tools share the dataset_ prefix and use consistent snake_case, giving a clear family identity. The second part is not uniformly verb-based (columns, provenance, top vs. compare, search), but the pattern is still predictable and readable.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset-access server. Each tool covers a distinct query mode or metadata need without unnecessary redundancy.

Completeness4/5

The tool surface covers schema discovery, provenance, exact and fuzzy row lookup, comparisons, aggregations, and ranking, so most data-exploration questions are supported. Minor gaps include no general pagination through all rows and no distinct-values tool, but these are workaroundable.

Resources