create_prompt_template
Generate template code for custom MCP prompts by specifying a name, description, and output directory. Includes optional variables for dynamic functionality.
Instructions
Generates template code for a new MCP prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
include_variables | No | ||
output_dir | Yes | ||
prompt_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"include_variables": {
"type": "boolean"
},
"output_dir": {
"type": "string"
},
"prompt_name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"prompt_name",
"description",
"output_dir"
],
"type": "object"
}