add_prompt
Add new prompts with structured content and variables to Promptopia MCP for streamlined system integration.
Instructions
Adds a new prompt to the system (single content format)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the prompt with variables in {{variable}} format | |
description | No | Description of the prompt | |
name | Yes | Name of the prompt |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the prompt with variables in {{variable}} format",
"type": "string"
},
"description": {
"description": "Description of the prompt",
"type": "string"
},
"name": {
"description": "Name of the prompt",
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}