The system provides helper tools to inspect and manage prompts. These tools allow you to view all available prompts and their token estimates.

Use the select_prompts helper tool to returns all prompts along with token estimates. Both mid and conservative estimates are included. This tool does not apply a selection strategy.
Note: Exact tool IDs depend on the implementation. To verify tool IDs, run the following command:
./mcpgen client <profile_name>

Validation tips for prompt size

Use the output of select_prompts to verify that no single prompt is unexpectedly large. Keep each individual prompt between 4 KB and 8 KB unless there is a clear justification for exceeding this range.

Example output

The following example shows the output of the select_prompts helper tool:
{
  "query": "status guidance",
  "context_window": 8192,
  "selected_prompts": [
    {"name": "auto_assistant", "tokens_mid": 120, "tokens_conservative": 150},
    {"name": "product_recommendation", "tokens_mid": 90, "tokens_conservative": 110}
  ],
  "total_selected_tokens_mid": 210,
  "notes": "All registered prompts returned with token estimates."
}