Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the FindAgency HQ 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 full burden and does disclose key behaviors: substring cell matching, case-insensitivity, and the 50-row upper bound. It does not mention ordering, default limit behavior, or empty-result handling, but these are minor for correct invocation.

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 sentence with no filler, front-loading the result type and core matching behavior before the limit. Every part earns its place.

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 query-and-limit tool, the description plus schema provides enough to invoke it correctly: query is required, limit is optional with min/max, and matching behavior is clear. It does not specify row structure or ordering, but those are not essential for selecting and calling this tool.

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 describes only the query parameter, while limit lacks description. The tool description adds useful semantics for query ('cells contain', case-insensitive), but its 'up to 50' largely repeats the schema's maximum constraint and does not clarify the default limit or behavior when omitted.

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 specifies the exact behavior: it returns rows of the FindAgency HQ dataset whose cells contain the query, with case-insensitive matching and a 50-row cap. This clearly differentiates it from siblings like dataset_columns, dataset_stats, and dataset_row as the free-text search tool.

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 usage when an agent needs rows matching a substring in any cell, but it does not explicitly state when to use or avoid this tool, nor does it mention any alternatives. Usage is inferable but not clearly guided.

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

The dataset_* tools are mostly distinct (columns vs provenance vs row vs search vs stats vs top vs compare), though dataset_row, dataset_search, and dataset_compare have overlapping filtering semantics. The enquiry_* tools are clearly distinct. Overall, descriptions clarify confusion, but minor ambiguity exists.

Naming Consistency5/5

All tools follow a consistent lowercase_with_underscores naming convention, with a clear prefix (dataset_ or enquiry_/submit_). The pattern is predictable and uniform across the set.

Tool Count5/5

10 tools is a well-scoped number for a dataset querying and enquiry submission server. Each tool serves a distinct purpose without unnecessary bloat or redundancy.

Completeness4/5

The dataset tools cover the essential read-only operations (columns, provenance, row, search, stats, top, compare) and the enquiry tools cover the full submission flow (describe, fields, submit). Minor gaps exist like no update/cancel for enquiries, but these are not core to the server's stated purpose.

Resources