Opik MCP Server

Official

update-prompt

Update a prompt

Input Schema

NameRequiredDescriptionDefault
nameYesNew name for the prompt
promptIdYesID 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" }