Skip to main content
Glama

Search NightMarquee prompts

nightmarquee_search_prompts
Read-onlyIdempotent

Search the NightMarquee catalog of website build prompts by keyword, category, or tier to retrieve matching slugs, taglines, and demo links.

Instructions

Search the NightMarquee catalog of website build prompts by keyword, category (hero, landing, saas, portfolio, ecommerce, 3d) or tier. Returns matching slugs, taglines and demo links to pass to nightmarquee_get_prompt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tierNo"free" needs no account; "unlimited" needs a signed-in Unlimited plan
limitNoHow many matches to return, 1 to 50, default 10
queryNoFree text, matched against titles, taglines and style keywords
categoryNoRestrict to one section of the catalog

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoSet only when the catalog could not be reached
totalYesMatches before `limit` was applied
resultsYesMatches, capped at `limit`

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.4

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover readOnlyHint, idempotentHint, openWorldHint, and destructiveHint, so the description need not repeat them. It adds value by specifying that matching occurs against titles, taglines, and style keywords, and that the return includes slugs, taglines, and demo links—behavioral details beyond annotations. No contradictions exist.

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 two sentences: the first states the action and filter options, the second states the output and its downstream use. It is front-loaded with the core purpose and contains no redundant words, making every sentence earn its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 4 optional parameters, all fully documented in the schema, and an output schema exists. The description covers the search behavior, filter options, and output purpose, while annotations handle safety. Nothing essential is missing for an agent to call it correctly.

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?

Schema description coverage is 100%, with each parameter (query, category, tier, limit) having a clear description and enums for category and tier. The description merely lists the filter dimensions without adding new meaning beyond the schema. Since the schema carries the semantic load, a baseline of 3 is appropriate.

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 action (search) and resource (NightMarquee catalog of website build prompts), lists specific filters (keyword, category, tier) with the category enum spelled out, and indicates the output (slugs, taglines, demo links) intended for nightmarquee_get_prompt. This differentiates it from siblings like get_prompt (retrieval) and sign_in/whoami (auth).

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 explicitly notes the output is meant to be passed to nightmarquee_get_prompt, establishing this as the discovery step before retrieval. It doesn't explicitly state when not to use it, but the sibling context and purpose make the usage clear. The tier-specific auth note in the schema adds context, though the description itself doesn't contrast with alternatives.

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