list-prompts
Retrieve a paginated list of prompts from the Opik MCP Server for streamlined access and integration with development environments and workflows.
Instructions
Get a list of Opik prompts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | Page number for pagination | |
size | Yes | Number of items per page |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number for pagination",
"type": "number"
},
"size": {
"description": "Number of items per page",
"type": "number"
}
},
"required": [
"page",
"size"
],
"type": "object"
}