create-prompt
Generate a new prompt by specifying its name, enabling structured input creation within the Opik platform's Model Context Protocol environment.
Instructions
Create a new prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the prompt |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the prompt",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}