delete-prompt
Remove specific prompts by ID using the delete-prompt tool on Opik MCP Server. It ensures precise management of prompts for streamlined operations and integration.
Instructions
Delete a prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
promptId | Yes | ID of the prompt to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"promptId": {
"description": "ID of the prompt to delete",
"type": "string"
}
},
"required": [
"promptId"
],
"type": "object"
}