Skip to main content
Glama

get-trace-stats

Retrieve trace statistics by specifying project ID, name, date range, or workspace for efficient analysis and monitoring on the Opik platform.

Instructions

Get statistics for traces

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endDateNoEnd date in ISO format (YYYY-MM-DD)
projectIdNoProject ID to filter traces
projectNameNoProject name to filter traces
startDateNoStart date in ISO format (YYYY-MM-DD)
workspaceNameNoWorkspace name to use instead of the default

Implementation Reference

  • The main handler function for 'get-trace-stats' tool. Constructs API URL with project filtering, date ranges, fetches stats from /v1/private/traces/stats, handles no-project case by fetching first project, formats and returns response as content array.
    async (args: any) => { const { projectId, projectName, startDate, endDate, workspaceName } = args; let url = `/v1/private/traces/stats`; // Build query parameters const queryParams = []; // Add project filtering - API requires either project_id or project_name if (projectId) { queryParams.push(`project_id=${projectId}`); } else if (projectName) { queryParams.push(`project_name=${encodeURIComponent(projectName)}`); } else { // If no project specified, we need to find one for the API to work const projectsResponse = await makeApiRequest<ProjectResponse>( `/v1/private/projects?page=1&size=1`, {}, workspaceName ); if ( projectsResponse.data && projectsResponse.data.content && projectsResponse.data.content.length > 0 ) { const firstProject = projectsResponse.data.content[0]; queryParams.push(`project_id=${firstProject.id}`); logToFile( `No project specified, using first available: ${firstProject.name} (${firstProject.id})` ); } else { return { content: [ { type: 'text', text: 'Error: No project ID or name provided, and no projects found', }, ], }; } } if (startDate) queryParams.push(`start_date=${startDate}`); if (endDate) queryParams.push(`end_date=${endDate}`); if (queryParams.length > 0) { url += `?${queryParams.join('&')}`; } const response = await makeApiRequest<TraceStatsResponse>(url, {}, workspaceName); if (!response.data) { return { content: [{ type: 'text', text: response.error || 'Failed to fetch trace statistics' }], }; } return { content: [ { type: 'text', text: `Trace Statistics:`, }, { type: 'text', text: JSON.stringify(response.data, null, 2), }, ], }; }
  • Input parameters schema defined with Zod validators for projectId, projectName, startDate, endDate, workspaceName.
    { projectId: z .string() .optional() .describe( 'Project ID to filter traces. If not provided, will use the first available project' ), projectName: z .string() .optional() .describe('Project name to filter traces (alternative to projectId)'), startDate: z .string() .optional() .describe('Start date in ISO format (YYYY-MM-DD). Example: "2024-01-01"'), endDate: z .string() .optional() .describe('End date in ISO format (YYYY-MM-DD). Example: "2024-01-31"'), workspaceName: z .string() .optional() .describe('Workspace name to use instead of the default workspace'), },
  • Registers the 'get-trace-stats' tool on the MCP server with name, description, input schema, and handler function.
    server.tool( 'get-trace-stats', 'Get aggregated statistics for traces including counts, costs, token usage, and performance metrics over time', { projectId: z .string() .optional() .describe( 'Project ID to filter traces. If not provided, will use the first available project' ), projectName: z .string() .optional() .describe('Project name to filter traces (alternative to projectId)'), startDate: z .string() .optional() .describe('Start date in ISO format (YYYY-MM-DD). Example: "2024-01-01"'), endDate: z .string() .optional() .describe('End date in ISO format (YYYY-MM-DD). Example: "2024-01-31"'), workspaceName: z .string() .optional() .describe('Workspace name to use instead of the default workspace'), }, async (args: any) => { const { projectId, projectName, startDate, endDate, workspaceName } = args; let url = `/v1/private/traces/stats`; // Build query parameters const queryParams = []; // Add project filtering - API requires either project_id or project_name if (projectId) { queryParams.push(`project_id=${projectId}`); } else if (projectName) { queryParams.push(`project_name=${encodeURIComponent(projectName)}`); } else { // If no project specified, we need to find one for the API to work const projectsResponse = await makeApiRequest<ProjectResponse>( `/v1/private/projects?page=1&size=1`, {}, workspaceName ); if ( projectsResponse.data && projectsResponse.data.content && projectsResponse.data.content.length > 0 ) { const firstProject = projectsResponse.data.content[0]; queryParams.push(`project_id=${firstProject.id}`); logToFile( `No project specified, using first available: ${firstProject.name} (${firstProject.id})` ); } else { return { content: [ { type: 'text', text: 'Error: No project ID or name provided, and no projects found', }, ], }; } } if (startDate) queryParams.push(`start_date=${startDate}`); if (endDate) queryParams.push(`end_date=${endDate}`); if (queryParams.length > 0) { url += `?${queryParams.join('&')}`; } const response = await makeApiRequest<TraceStatsResponse>(url, {}, workspaceName); if (!response.data) { return { content: [{ type: 'text', text: response.error || 'Failed to fetch trace statistics' }], }; } return { content: [ { type: 'text', text: `Trace Statistics:`, }, { type: 'text', text: JSON.stringify(response.data, null, 2), }, ], }; } );
  • src/index.ts:91-94 (registration)
    Conditional registration of trace tools (including get-trace-stats) by calling loadTraceTools when 'traces' toolset is enabled.
    if (config.enabledToolsets.includes('traces')) { server = loadTraceTools(server); logToFile('Loaded traces toolset'); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/comet-ml/opik-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server