Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Ninebix 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.7/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 burden of behavioral disclosure. It reveals the matching rule (case-insensitive) and the result cap (up to 50), which are useful. However, it does not mention whether the operation is read-only, what happens with zero matches, or if there is any default ordering. Some transparency is present, but gaps remain.

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 redundancy. It front-loads the core action (searching rows) and immediately provides essential constraints (case-insensitivity and limit). Every word adds value.

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 tool with only two parameters and no output schema, the description covers the main behavior but leaves ambiguities: the default limit when the optional 'limit' parameter is omitted, the structure of returned rows, and any error handling. Given the low complexity, this is acceptable but not fully complete.

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 the query parameter has a description in the schema, while limit does not. The tool description hints at the limit's role with 'up to 50', adding some semantics beyond the schema, but it does not explicitly explain the limit parameter or clarify default behavior. This partial compensation justifies a baseline 3.

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 clearly states the tool's function: returning rows of the Ninebix dataset that contain a query string, with specific details on case-insensitivity and a maximum result count. This distinguishes it from sibling tools like dataset_stats (statistics) or dataset_columns (schema), making the purpose unambiguous.

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 description implies when to use it (searching dataset rows by content) but does not explicitly mention alternatives or exclusion criteria. An agent can infer it is for content-based lookup, but there is no explicit guidance on when to prefer other tools like dataset_top or dataset_row.

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.1/5.0
Disambiguation5/5

Each tool has a distinct purpose: schema, row retrieval, search, stats, top values, comparisons, and provenance. No overlap or ambiguous responsibilities.

Naming Consistency5/5

All tools follow the consistent `dataset_<action>` pattern with clear verb-like suffixes, making the set predictable and easy to navigate.

Tool Count5/5

Seven tools cover the full range of data exploration needs without being excessive. The count is well within the ideal range for a focused dataset server.

Completeness5/5

The toolset provides comprehensive coverage: schema inspection, individual rows, search, statistics, top/bottom sorting, comparisons, and metadata. No obvious missing capability for typical dataset queries.

Resources