Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

sevennow_suggest

Get 7NOW search-term completions for a partial query. Choose a vertical (convenience, restaurant, or global) to return relevant suggestions, such as 'chi' becoming 'chips ahoy' or 'chipotle'.

Instructions

Get 7NOW search-term suggestions. Returns search-term completions for a partial query, e.g. "chi" -> "chips ahoy", "chips", "chicken". No store is required. q must be at least 3 characters -- shorter values return a typed invalid-param error, matching upstream's own enforced minimum. vertical selects which search index to complete against, and the indexes are materially different rather than variations on one list: for "chi", convenience answers "chips ahoy, chips, chicken wings" while restaurant answers "chipotle, chinese food, chili". global is a sparse cross-vertical index -- many prefixes legitimately return no suggestions there.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesPartial search term, at least 3 characters.
verticalNoWhich search index to complete against. One of: convenience, restaurant, global. Defaults to convenience.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.5/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 of behavioral disclosure. It does an excellent job by disclosing the minimum length constraint (3 characters), the resulting invalid-param error, the differences between vertical indexes, and the sparse nature of the 'global' index. The only gap is that it does not describe the return structure (e.g., whether it's a list, object, etc.) or any other potential behaviors like latency or rate limits, which would be valuable.

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 well-structured and front-loaded: it opens with the purpose, then provides examples, then states the constraint and error, and finally details the vertical semantics. Every sentence adds value without redundancy. It is appropriately sized for the complexity of the tool, and the use of concrete examples makes it highly readable.

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?

Given the tool's complexity (2 params, no output schema, no annotations), the description covers the essential aspects: purpose, constraints, error behavior, and vertical distinctions. It does not specify the exact output format, but since no output schema is present, a more detailed description of the return structure would be beneficial. Nevertheless, the description is sufficient for an agent to invoke the tool correctly in most scenarios.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although the schema already documents both parameters (100% coverage), the description adds significant semantic value beyond the schema. It explains the minimum length enforcement and its error behavior for 'q', and it clarifies the material differences between vertical values with concrete examples ('convenience' vs 'restaurant' for 'chi'), which the schema does not convey. This goes well above the baseline of 3.

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 clearly states the tool's purpose: 'Get 7NOW search-term suggestions' with concrete examples of input-output behavior ('chi' -> 'chips ahoy'). It specifies the resource (7NOW search terms) and the operation (suggestions/completions), which is unambiguous and distinguishes it from the broader search tool (sevennow_search) in the sibling list.

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 provides clear context for when to use the tool (for partial-query completions) and includes a key usage note ('No store is required'), which helps avoid unnecessary prerequisites. It also explains the vertical parameter's effect on results. However, it does not explicitly mention alternative tools or when not to use this tool, so it misses the exclusion clause that would warrant a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools