Skip to main content
Glama

site

Search the dataset

dataset_search

Rows of the Funnelvo 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

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full load. It usefully discloses case-insensitive matching, 'any cell' coverage, and the 50-row cap. But it omits ordering, the behavior when limit is omitted, and what happens when no rows match.

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 one concise sentence that front-loads the core behavior, then adds the two most important constraints: case-insensitivity and the row cap. No filler or redundant restatement of the tool name.

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 search tool, the description covers the target dataset, the matching rule, and the result cap. It is sufficiently complete for an agent to invoke it correctly, though a small amount of detail about default limit or ordering would make it fully airtight.

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 'query' but not 'limit'. The description adds meaningful context by clarifying case-insensitive cell-content matching and the up-to-50 cap, but it does not explain the default limit or pagination behavior beyond what the schema already constrains.

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 clearly identifies the tool as returning rows of the Funnelvo dataset that contain the query in any cell, which is a specific and searchable operation. It does not explicitly contrast it with sibling tools like dataset_top or dataset_row, so it falls short of full differentiation.

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 intended use is implied: call this tool when you need to find rows by cell text. However, the description provides no explicit guidance on when to prefer it over the sibling dataset tools or what it should not be used for.

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

Each tool has a clear role, but dataset_row and dataset_compare both retrieve rows by column equality, and dataset_search adds another filter-based lookup. The descriptions distinguish exact vs. multi-value vs. substring matching well enough that an agent can choose correctly.

Naming Consistency4/5

All tools share a consistent dataset_ prefix, making the family obvious. However, the second part mixes nouns (columns, stats, row), verbs (compare, search), and adjectives (top), so the pattern is not a uniform verb_noun convention.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset exploration server. Each tool covers a distinct query mode or metadata need without redundancy or excessive surface area.

Completeness5/5

The set covers schema discovery, provenance, exact lookup, substring search, multi-value comparison, summary statistics, and top/bottom ranking. This is a complete surface for the stated purpose of interacting with the Funnelvo dataset.

Resources