delete_prompt
Remove a specific prompt by its name from the Prompts MCP Server, ensuring cleaner prompt management and organization.
Instructions
Delete a prompt by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the prompt to delete |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the prompt to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}