prompt_template_generator
Create custom prompt templates for tasks like code generation, document writing, and data analysis on the MCP Prompt Server, streamlining workflow efficiency in Cursor/Windsurf editors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt_description | Yes | 对prompt功能的描述 | |
prompt_name | Yes | 新prompt的名称(唯一标识符) | |
task_type | Yes | 任务类型(如代码生成、文档编写、数据分析等) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt_description": {
"description": "对prompt功能的描述",
"type": "string"
},
"prompt_name": {
"description": "新prompt的名称(唯一标识符)",
"type": "string"
},
"task_type": {
"description": "任务类型(如代码生成、文档编写、数据分析等)",
"type": "string"
}
},
"required": [
"prompt_name",
"prompt_description",
"task_type"
],
"type": "object"
}