get_prompt
Retrieve prompt templates by name using a structured protocol, enabling efficient access and management of markdown-based prompts with YAML metadata.
Instructions
Retrieve a prompt by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the prompt to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the prompt to retrieve",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}