get-trace-by-id
Retrieve a specific trace by its ID to analyze or debug workflows in the Opik MCP Server. Supports optional workspace customization for targeted trace fetching.
Instructions
Get a single trace by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
traceId | Yes | ID of the trace to fetch | |
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": {
"traceId": {
"description": "ID of the trace to fetch",
"type": "string"
},
"workspaceName": {
"description": "Workspace name to use instead of the default",
"type": "string"
}
},
"required": [
"traceId"
],
"type": "object"
}