Search the dataset
dataset_searchRows of the Patientvo 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 Patientvo 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 carries the full burden. It usefully discloses case-insensitive matching and the 50-row limit, but it does not explain how rows are ordered or selected when more than 50 match, nor what the returned row objects contain.
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?
A single, front-loaded sentence states the core behavior and key constraints with no wasted words. It is concise without sacrificing the most important operational details.
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 two-parameter search tool, the description is mostly adequate: it explains the query semantics and the result cap. However, with no output schema and no usage guidance, it leaves uncertainty about result ordering, which 50 rows are selected, and how to choose this tool over siblings.
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 coverage is only 50%: the query parameter has a description, while limit does not. The description adds meaningful semantics by stating case-insensitive cell matching and the 50-row cap, though the limit information largely duplicates the schema's maximum 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 clearly identifies the operation: find rows of the Patientvo dataset whose cells match a query, with case-insensitive matching and a 50-row cap. It implies row-level search rather than schema/statistics operations, which helps distinguish it from siblings like dataset_columns and dataset_stats, though it does not explicitly name an alternative.
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 is given about when to use this tool versus siblings such as dataset_row, dataset_top, or dataset_columns. The description implies general text-search usage, but it does not state exclusions, alternatives, or conditions that would select this tool over the others.
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.
Most tools have clearly distinct purposes: schema, search, exact row lookup, multi-value comparison, stats, top/bottom, and provenance. Some slight overlap exists between dataset_row and dataset_compare for single-value filters, but the descriptions generally make the intended use clear.
All tools share a consistent dataset_ prefix and use snake_case, which makes them predictable. The suffixes are a mix of result nouns and action verbs, but this does not create confusion because the prefix dominates the naming pattern.
Seven tools is a well-scoped set for a single-dataset query server. Each tool serves a distinct analytical need without unnecessary redundancy, making the surface easy to navigate.
The tool set covers schema exploration, provenance, exact lookup, text search, group comparison, summary stats, and top/bottom ranking. Minor gaps like pagination or distinct-value listing are workable around with existing tools, so the core domain is well covered.