Skip to main content
Glama

Search the dataset

dataset_search

Rows of the Rapportvo 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.1/5.0
Behavior4/5

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

With no annotations provided, the description properly carries the behavioral burden. It discloses case-insensitive matching, that matching applies to any cell, and that results are capped at 50. Minor gaps remain, such as result ordering and behavior when no cells match, but the key invocation-relevant behavior is stated.

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 sentence with no filler; the resource, matching behavior, case sensitivity, and row cap are all front-loaded and useful.

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 plus schema is nearly sufficient: the agent knows what to pass, how matching works, and the result limit. It does not describe the output shape or ordering, but no output schema exists and the return concept of 'rows' is implied.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 50% because limit has no description, but the description compensates by explaining the search is case-insensitive and that results are 'up to 50'. This adds meaning beyond the schema for both query and limit.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states exactly what the tool returns: rows of the Rapportvo dataset whose cells contain a query, with case-insensitive matching and a cap of 50. This makes the tool's function clear, though it does not explicitly contrast it with sibling tools such as dataset_row or dataset_top.

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 wording establishes a clear use case: search for dataset rows by content across all cells. It does not explicitly name alternatives or exclusions, but the context is sufficient for an agent to prefer this over row/stats/column tools.

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 are clearly distinct query modes, but dataset_columns includes a provenance banner that slightly overlaps with dataset_provenance, and dataset_row/dataset_compare both support exact-value filtering on a column. These boundaries are manageable but not perfectly crisp.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case style, which is predictable and consistent. However, the second part mixes verbs (compare, search), nouns (columns, provenance, row), and adjectives/nouns (top, stats), so there is no uniform verb_noun pattern.

Tool Count5/5

Seven tools is well-scoped for a single-dataset query server. Each tool covers a distinct type of data access or metadata need without feeling padded or redundant.

Completeness4/5

The surface covers schema, provenance, exact lookup, substring search, multi-value comparison, statistical summaries, and top/bottom ranking for the dataset. It lacks generalized arbitrary filtering or full row pagination, but the core read-only dataset workflow is well covered.

Resources