list-traces
Retrieve paginated traces by project ID, name, or workspace using a unified interface for accessing Opik capabilities via Opik MCP Server.
Instructions
Get a list of traces
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | Page number for pagination | |
projectId | No | Project ID to filter traces | |
projectName | No | Project name to filter traces | |
size | Yes | Number of items per page | |
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"
},
"projectId": {
"description": "Project ID to filter traces",
"type": "string"
},
"projectName": {
"description": "Project name to filter traces",
"type": "string"
},
"size": {
"description": "Number of items per page",
"type": "number"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"page",
"size"
],
"type": "object"
}