Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Focusvo 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?

With no annotations provided, the description carries the behavioral burden. It adds useful details: case-insensitive matching and a 50-row cap. However, it does not disclose what happens with no matches, whether results are ordered, or the exact return format.

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 sentence conveys the core behavior with no filler. Every element—row selection, cell matching, case-insensitivity, and result cap—is packed efficiently.

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 explains input behavior and the maximum result count. It could note what a result row looks like or empty-result behavior, but the basics are sufficiently covered.

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%: the query parameter has a description while limit does not. The tool description adds the case-insensitive matching behavior for query, which is meaningful. However, the relationship between the limit parameter and the 'up to 50' behavior is only implicit, so the description partially compensates but does not fully clarify parameter semantics.

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 clear verb ('search') and resource ('dataset'), and precisely defines the behavior: returns rows whose cells contain the query, case-insensitively, up to 50 results. This distinguishes it from sibling tools like dataset_row or dataset_stats, which clearly have different purposes.

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 gives clear context for when to use the tool: when an agent needs to find dataset rows matching a query in any cell. It does not explicitly mention alternatives or exclusion criteria, but the search semantics are specific enough that an agent can infer the appropriate use case.

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 has a specific purpose: schema, provenance, exact lookup, multi-value comparison, search, stats, and top-N. dataset_compare and dataset_row overlap somewhat since both filter rows by column values, but the multi-value ordered behavior of dataset_compare and the exact single-value behavior of dataset_row keep them mostly distinct.

Naming Consistency5/5

All tool names follow the same dataset_<noun> pattern, making the set predictable and easy to navigate. The naming clearly signals that every tool operates on the same Focusvo dataset.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool covers a distinct mode of querying or metadata retrieval without redundancy or unnecessary bloat.

Completeness4/5

The set covers schema discovery, provenance, exact lookup, search, comparison, statistics, and top-N queries, which are the core operations for exploring a dataset. Minor gaps exist such as distinct-value enumeration or grouped aggregation, but agents can work around them with existing tools.

Resources