list-projects
Retrieve a paginated list of projects or workspaces from the Opik MCP Server. Supports sorting, filtering by workspace name, and customizable page size for efficient project management.
Instructions
Get a list of projects/workspaces
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | Page number for pagination | |
size | Yes | Number of items per page | |
sortBy | No | Sort projects by this field | |
sortOrder | No | Sort order (asc or desc) | |
workspaceName | No | Workspace name to use instead of the default |
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"
},
"sortBy": {
"description": "Sort projects by this field",
"type": "string"
},
"sortOrder": {
"description": "Sort order (asc or desc)",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"page",
"size"
],
"type": "object"
}