Skip to main content
Glama
vola-trebla

toad-mcp-server

by vola-trebla

toad_list_prompts

Read-onlyIdempotent

List available prompts from the registry with optional tag filtering and pagination. Choose markdown or JSON output to suit your workflow.

Instructions

List available prompts from the Prompt Registry. Supports pagination and optional filtering by tag.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoFilter prompts by tag
limitNoMaximum number of prompts to return
offsetNoNumber of prompts to skip
response_formatNoResponse format: markdown for human reading, json for machine processingmarkdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the registry source and pagination/filtering capability but doesn't describe return format or output structure. This is adequate given the annotation coverage, though not richer than necessary.

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?

Two short sentences with no filler. The main action is stated first, followed by capability details. Every word earns 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?

For a simple read-only list operation, the description plus the fully documented schema and safety annotations are sufficient. No output schema is present, but 'list' clearly implies a list of prompts. There are no missing details an agent would need to call this tool 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%, so the schema already documents all four parameters. The description adds a high-level mention of 'pagination and optional filtering by tag' but no new details beyond what the schema provides. Baseline 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 states a specific verb ('List') and resource ('prompts from the Prompt Registry'), which clearly distinguishes it from siblings like toad_get_prompt (single prompt) and toad_search_documents (document search). Its scope is immediately understandable.

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 gives clear context: use this to list available prompts, with pagination and optional tag filtering. It doesn't explicitly mention when to use a sibling instead, but the 'List' framing and mention of registry make the intended use obvious.

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