We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/neondatabase-labs/mcp-server-neon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
trace.ts•307 B
import { randomUUID } from 'crypto';
/**
* Generates a unique trace ID for correlating logs, analytics, and errors
* across a single request/operation lifecycle.
*
* Format: UUID v4 (e.g., "550e8400-e29b-41d4-a716-446655440000")
*/
export function generateTraceId(): string {
return randomUUID();
}