update-prompt
Modify prompts by updating their names and IDs using the Opik MCP Server, ensuring consistent and accurate prompt management across integrated environments.
Instructions
Update a prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | New name for the prompt | |
promptId | Yes | ID of the prompt to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "New name for the prompt",
"type": "string"
},
"promptId": {
"description": "ID of the prompt to update",
"type": "string"
}
},
"required": [
"promptId",
"name"
],
"type": "object"
}