list_verticals
List every vertical in the PromptSharp library with its sections, prompt counts, and whether it is unlocked for your current license tier.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List every vertical in the PromptSharp library with its sections, prompt counts, and whether it is unlocked for your current license tier.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It clearly lists the output fields (sections, prompt counts, unlock status) and implies listing all verticals for the current license tier, which is sufficient for a read-only list tool.
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, well-structured sentence that front-loads the action and result. No unnecessary words; every part earns its place.
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?
Given zero parameters and no output schema, the description fully covers the tool's purpose and return values. It provides sufficient context for an agent to select and invoke this tool correctly.
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?
The input schema has zero parameters, so baseline is 4. The description adds value by explaining the return structure, compensating for the lack of output schema.
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 uses a specific verb ('List') and resource ('verticals'), clearly stating what is returned (sections, prompt counts, unlock status). It distinguishes from siblings (get_prompt, search_prompts) as a list-all operation.
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?
The description implies usage for getting an overview of all verticals but does not explicitly state when to use this tool versus siblings like get_prompt or search_prompts. No when-not-to-use or alternative guidance is provided.
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 has a distinct purpose: fetching a specific prompt, listing verticals, and searching. No overlapping functionality.
All tools follow a consistent snake_case verb_noun pattern: get_prompt, list_verticals, search_prompts.
3 tools is well-scoped for a prompt library, covering the essential operations of listing, searching, and retrieving.
Covers key operations for a read-only library. Missing a tool to list prompts within a vertical, but search_prompts with license scoping partially addresses this.