Search the dataset
dataset_searchRows of the Weekrota dataset whose cells contain the query (case-insensitive), up to 50.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | text to look for in any cell |
dataset_searchRows of the Weekrota dataset whose cells contain the query (case-insensitive), up to 50.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | text to look for in any cell |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses key behaviors: case-insensitive matching, search scope (any cell), and a result cap of 50. It doesn't mention ordering or error behavior, but the core behavior is clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with purpose, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with no output schema, the description covers the essential: what is searched, case-insensitivity, and limit. Minor gaps like ordering or no-result behavior are acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 50% (query has description). The tool description adds context for the limit (cap of 50) but doesn't add syntax details. The query parameter is already described in schema, so the description adds marginal value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action (search rows) on a specific resource (Weekrota dataset) with a clear filter (cells contain query) and a cap (50). It is unambiguous and distinguishes from siblings like dataset_stats or dataset_columns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this vs siblings. The description implies a search use case but doesn't name alternatives or exclusions, so an agent has to infer when to choose this over dataset_row or dataset_top.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a different aspect of the dataset: schema, provenance, exact lookup, substring search, multi-value comparison, aggregation, and ordering. dataset_compare and dataset_row are somewhat similar since both filter on column values, but the descriptions clarify that compare handles multiple values while row handles a single exact match.
All tools follow the same dataset_ prefix convention with a lowercase noun or verb suffix: columns, compare, provenance, row, search, stats, top. The naming is uniform and predictable, making it easy to infer the purpose of each tool.
Seven tools is a well-scoped set for dataset exploration and querying. Each tool covers a distinct operation type, and none are redundant or unnecessary.
The set covers schema discovery, provenance, exact and fuzzy lookup, multi-value comparison, descriptive statistics, and top/bottom ordering. A minor gap is the lack of a tool to list distinct values or facets, but the core needs for answering questions about this dataset are well covered.