get-prompt-by-id
Retrieve a specific prompt by its unique ID using the Model Context Protocol. Integrate with the Opik platform to access and manage prompts efficiently in IDEs or other environments.
Instructions
Get a single prompt by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
promptId | Yes | ID of the prompt to fetch |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"promptId": {
"description": "ID of the prompt to fetch",
"type": "string"
}
},
"required": [
"promptId"
],
"type": "object"
}