get_prompt_detail
Get complete prompt details with message templates, model settings, version history, and tags. Use prompt_id from list_prompts to fetch full configuration and metadata.
Instructions
Retrieve detailed information about a specific prompt.
Returns complete prompt data including:
id: Unique prompt identifier
name: Prompt name/title
description: Prompt description
messages: The prompt template messages (array of role/content objects)
model: Default model for this prompt
temperature: Default temperature setting
max_tokens: Default max tokens setting
created_at: Creation timestamp
updated_at: Last modification timestamp
is_active: Whether the prompt is active
current_version: Currently active version
version_count: Total number of versions
tags: Array of tags
metadata: Custom metadata object
The messages field contains the actual prompt template which may include:
System messages with instructions
User message templates with {{variables}}
Assistant message examples
Use list_prompts first to find the prompt_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt_id | Yes | Unique prompt identifier (from list_prompts) |