add_prompt
Add new prompts to the Prompts MCP Server by specifying a name, filename, and markdown content. Streamline prompt management and organization within the server's template collection.
Instructions
Add a new prompt to the collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the prompt in markdown format | |
filename | Yes | English filename for the prompt file (without .md extension) | |
name | Yes | Name of the prompt |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the prompt in markdown format",
"type": "string"
},
"filename": {
"description": "English filename for the prompt file (without .md extension)",
"type": "string"
},
"name": {
"description": "Name of the prompt",
"type": "string"
}
},
"required": [
"name",
"filename",
"content"
],
"type": "object"
}