get_prompt
Retrieve complete prompt content and metadata by exact name after using search_prompts to identify the correct prompt.
Instructions
📖 Get Full Prompt: Retrieve a specific prompt by its exact name. ⚠️ IMPORTANT: Use search_prompts first to find the correct prompt name, then use this tool. Returns the complete prompt content with metadata and template variables.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Exact prompt name from search results. Must match exactly (e.g., "api_documentation_generator", "REST API Endpoint Generator"). Copy the name field from search_prompts results. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Exact prompt name from search results. Must match exactly (e.g., \"api_documentation_generator\", \"REST API Endpoint Generator\"). Copy the name field from search_prompts results.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}